Show / Hide Table of Contents

Class InternationalMarketPrice

The model for international market pricing.

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

Properties

CurrencyCode

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

The currency of the pricing model.

Remarks

Required

CurrencySymbol

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

The symbol of the currency

Rate

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

The pricing rate.

Remarks

Required

In this article
Back to top