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

com.ingenico.connect.gateway.sdk.java.domain.dispute.definitions.Dispute Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
/*
 * This class was auto-generated from the API references found at
 * https://epayments-api.developer-ingenico.com/s2sapi/v1/
 */

package com.ingenico.connect.gateway.sdk.java.domain.dispute.definitions;

public class Dispute {

	private DisputeOutput disputeOutput = null;

	private String id = null;

	private String paymentId = null;

	private String status = null;

	private DisputeStatusOutput statusOutput = null;

	/**
	 * This property contains the creationDetails and default information regarding a dispute.
	 */
	public DisputeOutput getDisputeOutput() {
		return disputeOutput;
	}

	/**
	 * This property contains the creationDetails and default information regarding a dispute.
	 */
	public void setDisputeOutput(DisputeOutput value) {
		this.disputeOutput = value;
	}

	/**
	 * Dispute ID for a given merchant.
	 */
	public String getId() {
		return id;
	}

	/**
	 * Dispute ID for a given merchant.
	 */
	public void setId(String value) {
		this.id = value;
	}

	/**
	 * The ID of the payment that is being disputed.
	 */
	public String getPaymentId() {
		return paymentId;
	}

	/**
	 * The ID of the payment that is being disputed.
	 */
	public void setPaymentId(String value) {
		this.paymentId = value;
	}

	/**
	 * Current dispute status.
	 */
	public String getStatus() {
		return status;
	}

	/**
	 * Current dispute status.
	 */
	public void setStatus(String value) {
		this.status = value;
	}

	/**
	 * This property contains the output for a dispute regarding the status of the dispute.
	 */
	public DisputeStatusOutput getStatusOutput() {
		return statusOutput;
	}

	/**
	 * This property contains the output for a dispute regarding the status of the dispute.
	 */
	public void setStatusOutput(DisputeStatusOutput value) {
		this.statusOutput = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy