Show / Hide Table of Contents

Class Currency

Currency details model

Inheritance
object
Currency
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OspgatewayService.Models
Assembly: OCI.DotNetSDK.Ospgateway.dll
Syntax
public class Currency

Properties

CurrencyCode

Declaration
[JsonProperty(PropertyName = "currencyCode")]
public string CurrencyCode { get; set; }
Property Value
Type Description
string

Currency code

CurrencySymbol

Declaration
[JsonProperty(PropertyName = "currencySymbol")]
public string CurrencySymbol { get; set; }
Property Value
Type Description
string

Currency symbol

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the currency

RoundDecimalPoint

Declaration
[JsonProperty(PropertyName = "roundDecimalPoint")]
public decimal? RoundDecimalPoint { get; set; }
Property Value
Type Description
decimal?

Round decimal point

UsdConversion

Declaration
[JsonProperty(PropertyName = "usdConversion")]
public decimal? UsdConversion { get; set; }
Property Value
Type Description
decimal?

USD conversion rate of the currency

In this article
Back to top