Class Counter
Contains information about a counter for a brand. Immutable class.
Inheritance
System.Object
Counter
Namespace: SIX.TimApi
Assembly: TimApi.dll
Syntax
public class Counter : object
Constructors
Counter(String, PaymentProtocol, Nullable<CardProductType>, Int64, Int32, Int32, Int32, List<Total>)
Create counter.
Declaration
public Counter(String brandName, PaymentProtocol paymentProtocol, CardProductType? cardProductType, long acqId, int count, int countDcc, int countForeign, List<Total> totals)
Parameters
Type | Name | Description |
---|---|---|
String | brandName | |
PaymentProtocol | paymentProtocol | |
System.Nullable<CardProductType> | cardProductType | |
System.Int64 | acqId | |
System.Int32 | count | |
System.Int32 | countDcc | |
System.Int32 | countForeign | |
List<Total> | totals |
Fields
CardProductType
Declaration
public readonly CardProductType? CardProductType
Field Value
Type | Description |
---|---|
System.Nullable<CardProductType> |
Properties
AcqId
Acquirer identifier. Uniquely identifies the acquirer.
Declaration
public long AcqId { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
BrandName
Contains the brand name of a card.
Declaration
public string BrandName { get; }
Property Value
Type | Description |
---|---|
System.String |
Count
Count of Transactions.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
CountDcc
DCC Transaction counts.
Declaration
public int CountDcc { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
CountForeign
Foreign Transaction counts.
Declaration
public int CountForeign { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
PaymentProtocol
Specifies the payment protocol used.
Declaration
public PaymentProtocol PaymentProtocol { get; }
Property Value
Type | Description |
---|---|
PaymentProtocol |
Totals
List of Totals as Total.
Declaration
public List<Total> Totals { get; }
Property Value
Type | Description |
---|---|
List<Total> |
Methods
ToString()
String representation.
Declaration
public override String ToString()
Returns
Type | Description |
---|---|
String |