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

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

/**
 * Object containing eWallet details
 */
public class TokenEWallet {

	private String alias = null;

	private CustomerToken customer = null;

	/**
	 * Deprecated: This field is not used by any payment product
	 * An alias for the token. This can be used to visually represent the token.
	 */
	public String getAlias() {
		return alias;
	}

	/**
	 * Deprecated: This field is not used by any payment product
	 * An alias for the token. This can be used to visually represent the token.
	 */
	public void setAlias(String value) {
		this.alias = value;
	}

	public CustomerToken getCustomer() {
		return customer;
	}

	public void setCustomer(CustomerToken value) {
		this.customer = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy