Class Brand
Contains information about a brand available on the terminal.
Immutable class.
Inheritance
System.Object
Brand
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SIX.TimApi
Assembly: TimApi.dll
Syntax
public class Brand
Constructors
Brand()
Create brand.
Declaration
public Brand()
Brand(String, Boolean, PaymentProtocol, Int32, Nullable<DateTime>, List<Application>, List<CurrencyItem>)
Create brand.
Declaration
public Brand(string name, bool dccAvailable, PaymentProtocol paymentProtocol, int acqId, DateTime? lastInitDate, List<Application> applications, List<CurrencyItem> currencies)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.Boolean | dccAvailable | |
PaymentProtocol | paymentProtocol | |
System.Int32 | acqId | |
System.Nullable<System.DateTime> | lastInitDate | |
System.Collections.Generic.List<Application> | applications | |
System.Collections.Generic.List<CurrencyItem> | currencies |
Properties
AcqId
Acquirer identifier. Uniquely identifies the acquirer.
Declaration
public int AcqId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Applications
List of Applications as Application .
Declaration
public List<Application> Applications { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Application> |
BrandName
Contains the brand name of a card.
Declaration
public string BrandName { get; }
Property Value
Type | Description |
---|---|
System.String |
Currencies
List of Currencies as CurrencyItem .
Declaration
public List<CurrencyItem> Currencies { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CurrencyItem> |
DccAvailable
Specifies if DCC is available for this brand.
Declaration
public bool DccAvailable { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
LastInitDate
Last time a defined acquirer was successfully initialized on the terminal.
Declaration
public DateTime? LastInitDate { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
PaymentProtocol
Specifies the payment protocol used.
Declaration
public PaymentProtocol PaymentProtocol { get; }
Property Value
Type | Description |
---|---|
PaymentProtocol |
Methods
ToString()
String representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()