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

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

/**
 * Object containing information for the client on how best to display this field
 */
public class AccountOnFileDisplayHints {

	private List labelTemplate = null;

	private String logo = null;

	/**
	 * Array of attribute keys and their mask
	 */
	public List getLabelTemplate() {
		return labelTemplate;
	}

	/**
	 * Array of attribute keys and their mask
	 */
	public void setLabelTemplate(List value) {
		this.labelTemplate = value;
	}

	/**
	 * Partial URL that you can reference for the image of this payment product. You can use our server-side resize functionality by appending '?size={{width}}x{{height}}' to the full URL, where width and height are specified in pixels. The resized image will always keep its correct aspect ratio.
	 */
	public String getLogo() {
		return logo;
	}

	/**
	 * Partial URL that you can reference for the image of this payment product. You can use our server-side resize functionality by appending '?size={{width}}x{{height}}' to the full URL, where width and height are specified in pixels. The resized image will always keep its correct aspect ratio.
	 */
	public void setLogo(String value) {
		this.logo = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy