Show / Hide Table of Contents

Class PricingRate

A pricing plan rate provided by the Publisher.

Inheritance
object
PricingRate
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top