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

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

	private String errorId = null;

	private List errors = null;

	private PayoutResult payoutResult = null;

	public String getErrorId() {
		return errorId;
	}

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

	/**
	 * Contains the set of errors
	 */
	public List getErrors() {
		return errors;
	}

	/**
	 * Contains the set of errors
	 */
	public void setErrors(List value) {
		this.errors = value;
	}

	public PayoutResult getPayoutResult() {
		return payoutResult;
	}

	public void setPayoutResult(PayoutResult value) {
		this.payoutResult = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy