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

com.ingenico.connect.gateway.sdk.java.domain.product.definitions.DirectoryEntry 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;

import java.util.List;

public class DirectoryEntry {

	private List countryNames = null;

	private String issuerId = null;

	private String issuerList = null;

	private String issuerName = null;

	/**
	 * Country name of the issuer, used to group issuers per country
* Note: this is only filled if supported by the payment product. */ public List getCountryNames() { return countryNames; } /** * Country name of the issuer, used to group issuers per country
* Note: this is only filled if supported by the payment product. */ public void setCountryNames(List value) { this.countryNames = value; } /** * Unique ID of the issuing bank of the customer */ public String getIssuerId() { return issuerId; } /** * Unique ID of the issuing bank of the customer */ public void setIssuerId(String value) { this.issuerId = value; } /** * To be used to sort the issuers. *
  • short - These issuers should be presented at the top of the list *
  • long - These issuers should be presented after the issuers marked as short *
* Note: this is only filled if supported by the payment product. Currently only iDeal (809) support this. Sorting within the groups should be done alphabetically. */ public String getIssuerList() { return issuerList; } /** * To be used to sort the issuers. *
  • short - These issuers should be presented at the top of the list *
  • long - These issuers should be presented after the issuers marked as short *
* Note: this is only filled if supported by the payment product. Currently only iDeal (809) support this. Sorting within the groups should be done alphabetically. */ public void setIssuerList(String value) { this.issuerList = value; } /** * Name of the issuing bank, as it should be presented to the customer */ public String getIssuerName() { return issuerName; } /** * Name of the issuing bank, as it should be presented to the customer */ public void setIssuerName(String value) { this.issuerName = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy