Show / Hide Table of Contents

Class SupportedCurrencySummary

The model for the currencies supported by the Marketplace Publisher Service.

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

Properties

CurrencyCode

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

The currency code, in the format specified by ISO-4217.

Remarks

Required

ExchangeRate

Declaration
[Required(ErrorMessage = "ExchangeRate is required.")]
[JsonProperty(PropertyName = "exchangeRate")]
public float? ExchangeRate { get; set; }
Property Value
Type Description
float?

Oracle exchange rate for the currency in USD.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SupportedCurrencySummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
SupportedCurrencySummary.LifecycleStateEnum?

The current state for the currency.

Remarks

Required

In this article
Back to top