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

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

import java.util.List;

public class AccountOnFile {

	private List attributes = null;

	private AccountOnFileDisplayHints displayHints = null;

	private Integer id = null;

	private Integer paymentProductId = null;

	public List getAttributes() {
		return attributes;
	}

	public void setAttributes(List value) {
		this.attributes = value;
	}

	/**
	 * Object containing information for the client on how best to display this field
	 */
	public AccountOnFileDisplayHints getDisplayHints() {
		return displayHints;
	}

	/**
	 * Object containing information for the client on how best to display this field
	 */
	public void setDisplayHints(AccountOnFileDisplayHints value) {
		this.displayHints = value;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer value) {
		this.id = value;
	}

	/**
	 * Payment product identifier - Please see [payment products](https://support.direct.ingenico.com/documentation/api/reference/index.html#tag/Products) for a full overview of possible values.
	 */
	public Integer getPaymentProductId() {
		return paymentProductId;
	}

	/**
	 * Payment product identifier - Please see [payment products](https://support.direct.ingenico.com/documentation/api/reference/index.html#tag/Products) for a full overview of possible values.
	 */
	public void setPaymentProductId(Integer value) {
		this.paymentProductId = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy