Package com.six.timapi
Class Brands
- java.lang.Object
-
- com.six.timapi.Brands
-
public class Brands extends Object
Contains information about a brand available on the terminal. It is available afterTerminal.login()
orTerminal.loginAsync()
has been performed or brands have been manually retrieved byTerminal.applicationInformation()
orTerminal.applicationInformationAsync()
. Immutable class.
-
-
Constructor Summary
Constructors Constructor Description Brands(String name, boolean dccAvailable, PaymentProtocol paymentProtocol, long acqId, TimeDate lastInitDate, List<Application> applications, List<CurrencyItem> currencies)
Create brand.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getAcqId()
Acquirer identifier.List<Application>
getApplications()
List of applications supported by the brand.List<CurrencyItem>
getCurrencies()
List of currencies supported by the brand.TimeDate
getLastInitDate()
Last time a defined acquirer was successfully initialized on the terminal.String
getName()
Brand name of a card.PaymentProtocol
getPaymentProtocol()
Payment protocol used.boolean
isDccAvailable()
DCC is available for this brand.String
toString()
String representation for debugging purpose.
-
-
-
Constructor Detail
-
Brands
public Brands(String name, boolean dccAvailable, PaymentProtocol paymentProtocol, long acqId, TimeDate lastInitDate, List<Application> applications, List<CurrencyItem> currencies)
Create brand.
-
-
Method Detail
-
getName
public String getName()
Brand name of a card.
-
isDccAvailable
public boolean isDccAvailable()
DCC is available for this brand.
-
getPaymentProtocol
public PaymentProtocol getPaymentProtocol()
Payment protocol used.
-
getAcqId
public long getAcqId()
Acquirer identifier. Uniquely identifies the acquirer.
-
getLastInitDate
public TimeDate getLastInitDate()
Last time a defined acquirer was successfully initialized on the terminal.
-
getApplications
public List<Application> getApplications()
List of applications supported by the brand.
-
getCurrencies
public List<CurrencyItem> getCurrencies()
List of currencies supported by the brand.
-
-