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.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class PricingRate

Properties

BillingCurrency

Declaration
[Required(ErrorMessage = "BillingCurrency is required.")]
[JsonProperty(PropertyName = "billingCurrency")]
public string BillingCurrency { 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?

Tha amount for the currency type.

Remarks

Required

In this article
Back to top