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

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

public class PaymentProductGroup {

	private AccountOnFile accountOnFile = null;

	private PaymentProductDisplayHints displayHints = null;

	private String id = null;

	public AccountOnFile getAccountOnFile() {
		return accountOnFile;
	}

	public void setAccountOnFile(AccountOnFile value) {
		this.accountOnFile = value;
	}

	/**
	 * Object containing display hints like the order of the product when shown in a list, the name of the product and the logo
	 */
	public PaymentProductDisplayHints getDisplayHints() {
		return displayHints;
	}

	/**
	 * Object containing display hints like the order of the product when shown in a list, the name of the product and the logo
	 */
	public void setDisplayHints(PaymentProductDisplayHints value) {
		this.displayHints = value;
	}

	/**
	 * The ID of the payment product group in our system
	 */
	public String getId() {
		return id;
	}

	/**
	 * The ID of the payment product group in our system
	 */
	public void setId(String value) {
		this.id = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy