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

com.ingenico.connect.gateway.sdk.java.domain.product.definitions.PaymentProductDisplayHints Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
/*
 * This class was auto-generated from the API references found at
 * https://epayments-api.developer-ingenico.com/s2sapi/v1/
 */
package com.ingenico.connect.gateway.sdk.java.domain.product.definitions;

public class PaymentProductDisplayHints {

	private Integer displayOrder = null;

	private String label = null;

	private String logo = null;

	/**
	 * Determines the order in which the payment products and groups should be shown (sorted ascending)
	 */
	public Integer getDisplayOrder() {
		return displayOrder;
	}

	/**
	 * Determines the order in which the payment products and groups should be shown (sorted ascending)
	 */
	public void setDisplayOrder(Integer value) {
		this.displayOrder = value;
	}

	/**
	 * Name of the field based on the locale that was included in the request
	 */
	public String getLabel() {
		return label;
	}

	/**
	 * Name of the field based on the locale that was included in the request
	 */
	public void setLabel(String value) {
		this.label = 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