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

com.ingenico.direct.domain.PayoutResponse 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;

public class PayoutResponse {

	private String id = null;

	private PayoutOutput payoutOutput = null;

	private String status = null;

	private PayoutStatusOutput statusOutput = null;

	public String getId() {
		return id;
	}

	public void setId(String value) {
		this.id = value;
	}

	public PayoutOutput getPayoutOutput() {
		return payoutOutput;
	}

	public void setPayoutOutput(PayoutOutput value) {
		this.payoutOutput = value;
	}

	/**
	 * Current high-level status of the payout in a human-readable form.
	 */
	public String getStatus() {
		return status;
	}

	/**
	 * Current high-level status of the payout in a human-readable form.
	 */
	public void setStatus(String value) {
		this.status = value;
	}

	public PayoutStatusOutput getStatusOutput() {
		return statusOutput;
	}

	public void setStatusOutput(PayoutStatusOutput value) {
		this.statusOutput = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy