Class PricingRate
A pricing plan rate provided by the Publisher.
Inherited Members
Namespace: Oci.SelfService.Models
Assembly: OCI.DotNetSDK.Self.dll
Syntax
public class PricingRate
Properties
Currency
Declaration
[Required(ErrorMessage = "Currency is required.")]
[JsonProperty(PropertyName = "currency")]
public string Currency { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The currency supported, in the format specified by ISO-4217 |
Remarks
Required
Rate
Declaration
[Required(ErrorMessage = "Rate is required.")]
[JsonProperty(PropertyName = "rate")]
public float? Rate { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | The amount charged for the plan in the specified currency. |
Remarks
Required