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

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

public class ValidationBankAccountCheck {

	private String code = null;

	private String description = null;

	private String result = null;

	/**
	 * Code of the bank account validation check
	 */
	public String getCode() {
		return code;
	}

	/**
	 * Code of the bank account validation check
	 */
	public void setCode(String value) {
		this.code = value;
	}

	/**
	 * Description of check performed
	 */
	public String getDescription() {
		return description;
	}

	/**
	 * Description of check performed
	 */
	public void setDescription(String value) {
		this.description = value;
	}

	/**
	 * Result of the bank account validation check performed, with the following possible results:
	 * 
    *
  • PASSED - The check passed *
  • ERROR - The check did not pass *
  • WARNING - Depending on your needs this either needs to be treated as a passed or error response. It depends on your business logic and for what purpose you want to use the validated bank account details. *
  • NOTCHECKED - This check was not performed, usually because one of the earlier checks already caused an error response to be triggered *
*/ public String getResult() { return result; } /** * Result of the bank account validation check performed, with the following possible results: *
    *
  • PASSED - The check passed *
  • ERROR - The check did not pass *
  • WARNING - Depending on your needs this either needs to be treated as a passed or error response. It depends on your business logic and for what purpose you want to use the validated bank account details. *
  • NOTCHECKED - This check was not performed, usually because one of the earlier checks already caused an error response to be triggered *
*/ public void setResult(String value) { this.result = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy