Class Counter
Contains information about a counter for a brand. Immutable class.
Inheritance
System.Object
Counter
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 Counter
Constructors
Counter(String, PaymentProtocol, Int32, Int32, Int32, Int32, List<Total>)
Create counter.
Declaration
public Counter(string brandName, PaymentProtocol paymentProtocol, int acqId, int count, int countDcc, int countForeign, List<Total> totals)
Parameters
Type | Name | Description |
---|---|---|
System.String | brandName | |
PaymentProtocol | paymentProtocol | |
System.Int32 | acqId | |
System.Int32 | count | |
System.Int32 | countDcc | |
System.Int32 | countForeign | |
System.Collections.Generic.List<Total> | totals |
Properties
AcqId
Acquirer identifier. Uniquely identifies the acquirer.
Declaration
public int AcqId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
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 |
---|---|
System.Collections.Generic.List<Total> |
Methods
ToString()
String representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()