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

com.ingenico.direct.domain.RefundErrorResponse 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 RefundErrorResponse {

	private String errorId = null;

	private List errors = null;

	private RefundResponse refundResult = null;

	public String getErrorId() {
		return errorId;
	}

	public void setErrorId(String value) {
		this.errorId = value;
	}

	public List getErrors() {
		return errors;
	}

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

	/**
	 * This object has the numeric representation of the current refund status, timestamp of last status change and performable action on the current refund resource. In case of a rejected refund, detailed error information is listed.
	 */
	public RefundResponse getRefundResult() {
		return refundResult;
	}

	/**
	 * This object has the numeric representation of the current refund status, timestamp of last status change and performable action on the current refund resource. In case of a rejected refund, detailed error information is listed.
	 */
	public void setRefundResult(RefundResponse value) {
		this.refundResult = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy