Class CurrencyItem
Contains information about a currency supported by a brand. Immutable class.
Inheritance
System.Object
CurrencyItem
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 CurrencyItem
Constructors
CurrencyItem(String, CurrencyType)
Create CurrencyItem.
Declaration
public CurrencyItem(string currency, CurrencyType currencyType)
Parameters
Type | Name | Description |
---|---|---|
System.String | currency | |
CurrencyType | currencyType |
Properties
Currency
Specifies the supported or used currency. String format (e.g. CHF, EUR, GBP, etc.).
Declaration
public string Currency { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CurrencyType
Specifies the type of currency.
Declaration
public CurrencyType CurrencyType { get; set; }
Property Value
Type | Description |
---|---|
CurrencyType |
Methods
ToString()
String representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()