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

com.ingenico.direct.domain.TokenCard 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 card details
 */
public class TokenCard {

	private String alias = null;

	private TokenCardData data = null;

	/**
	 * An alias for the token. This can be used to visually represent the token.
	 */
	public String getAlias() {
		return alias;
	}

	/**
	 * An alias for the token. This can be used to visually represent the token.
	 */
	public void setAlias(String value) {
		this.alias = value;
	}

	public TokenCardData getData() {
		return data;
	}

	public void setData(TokenCardData value) {
		this.data = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy