Class LatitudePayAvailability
Represents details of an available country & currency combination that can be used with the current LatitudePay account.
Inherited Members
Namespace: Yort.LatitudePay.InStore
Assembly: Yort.LatitudePay.InStore.dll
Syntax
public class LatitudePayAvailability
Remarks
Returns as part of LatitudePayConfigurationResponse.
Properties
| Improve this Doc View SourceCountry
Gets or sets the name of a country associated with this account.
Declaration
[JsonProperty("country")]
public string Country { get; set; }
Property Value
Type | Description |
---|---|
String | The country name. |
CountryCode
Gets or sets the ISO code of a country associated with this account.
Declaration
[JsonProperty("countryCode")]
public string CountryCode { get; set; }
Property Value
Type | Description |
---|---|
String | The country code. |
Currency
Gets or sets the ISO currency code associated with this account.
Declaration
[JsonProperty("currency")]
public string Currency { get; set; }
Property Value
Type | Description |
---|---|
String | The currency. |
CurrencySymbol
Gets or sets the symbol (i.e $) used with the currency associated with this account.
Declaration
[JsonProperty("currencySymbol")]
public string CurrencySymbol { get; set; }
Property Value
Type | Description |
---|---|
String | The currency symbol. |