All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ingenico.direct.domain.PaymentErrorResponse Maven / Gradle / Ivy

/*
 * This class was auto-generated from the API references found at
 * https://support.direct.ingenico.com/documentation/api/reference
 */
package com.ingenico.direct.domain;

import java.util.List;

public class PaymentErrorResponse {

	private String errorId = null;

	private List errors = null;

	private CreatePaymentResponse paymentResult = null;

	/**
	 * Unique reference, for debugging purposes, of this error response
	 */
	public String getErrorId() {
		return errorId;
	}

	/**
	 * Unique reference, for debugging purposes, of this error response
	 */
	public void setErrorId(String value) {
		this.errorId = value;
	}

	public List getErrors() {
		return errors;
	}

	public void setErrors(List value) {
		this.errors = value;
	}

	/**
	 * Object that contains details on the created payment in case one has been created.
	 */
	public CreatePaymentResponse getPaymentResult() {
		return paymentResult;
	}

	/**
	 * Object that contains details on the created payment in case one has been created.
	 */
	public void setPaymentResult(CreatePaymentResponse value) {
		this.paymentResult = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy