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

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

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

public class AccountOnFileAttribute extends KeyValuePair {

	private String mustWriteReason = null;

	private String status = null;

	/**
	 * The reason why the status is MUST_WRITE. Currently only "IN_THE_PAST" is possible as value (for expiry date), but this can be extended with new values in the future.
	 */
	public String getMustWriteReason() {
		return mustWriteReason;
	}

	/**
	 * The reason why the status is MUST_WRITE. Currently only "IN_THE_PAST" is possible as value (for expiry date), but this can be extended with new values in the future.
	 */
	public void setMustWriteReason(String value) {
		this.mustWriteReason = value;
	}

	/**
	 * Possible values:
	 * 
  • READ_ONLY - attribute cannot be updated and should be presented in that way to the user *
  • CAN_WRITE - attribute can be updated and should be presented as an editable field, for example an expiration date that will expire very soon *
  • MUST_WRITE - attribute should be updated and must be presented as an editable field, for example an expiration date that has already expired *
* Any updated values that are entered for CAN_WRITE or MUST_WRITE will be used to update the values stored in the token. */ public String getStatus() { return status; } /** * Possible values: *
  • READ_ONLY - attribute cannot be updated and should be presented in that way to the user *
  • CAN_WRITE - attribute can be updated and should be presented as an editable field, for example an expiration date that will expire very soon *
  • MUST_WRITE - attribute should be updated and must be presented as an editable field, for example an expiration date that has already expired *
* Any updated values that are entered for CAN_WRITE or MUST_WRITE will be used to update the values stored in the token. */ public void setStatus(String value) { this.status = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy