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

com.ingenico.connect.gateway.sdk.java.domain.capture.definitions.Capture 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.capture.definitions;

import com.ingenico.connect.gateway.sdk.java.domain.definitions.AbstractOrderStatus;

public class Capture extends AbstractOrderStatus {

	private CaptureOutput captureOutput = null;

	private String status = null;

	private CaptureStatusOutput statusOutput = null;

	/**
	 * Object containing capture details
	 */
	public CaptureOutput getCaptureOutput() {
		return captureOutput;
	}

	/**
	 * Object containing capture details
	 */
	public void setCaptureOutput(CaptureOutput value) {
		this.captureOutput = value;
	}

	/**
	 * Current high-level status of the payment in a human-readable form. Possible values are :
	 * 
    *
  • CAPTURE_REQUESTED - The transaction is in the queue to be captured. *
  • CAPTURED - The transaction has been captured and we have received online confirmation. *
  • CANCELLED - You have cancelled the transaction. *
  • REJECTED_CAPTURE - We or one of our downstream acquirers/providers have rejected the capture request. *
  • REVERSED - The transaction has been reversed. *

* Please see Statuses for a full overview of possible values. */ public String getStatus() { return status; } /** * Current high-level status of the payment in a human-readable form. Possible values are : *
    *
  • CAPTURE_REQUESTED - The transaction is in the queue to be captured. *
  • CAPTURED - The transaction has been captured and we have received online confirmation. *
  • CANCELLED - You have cancelled the transaction. *
  • REJECTED_CAPTURE - We or one of our downstream acquirers/providers have rejected the capture request. *
  • REVERSED - The transaction has been reversed. *

* Please see Statuses for a full overview of possible values. */ public void setStatus(String value) { this.status = value; } /** * This object has the numeric representation of the current capture status, timestamp of last status change and performable action on the current payment resource. * In case of failed payments and negative scenarios, detailed error information is listed. */ public CaptureStatusOutput getStatusOutput() { return statusOutput; } /** * This object has the numeric representation of the current capture status, timestamp of last status change and performable action on the current payment resource. * In case of failed payments and negative scenarios, detailed error information is listed. */ public void setStatusOutput(CaptureStatusOutput value) { this.statusOutput = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy