Show / Hide Table of Contents

Class AdminSkuPricingRate

A pricing plan rate for listing sku.

Inheritance
object
AdminSkuPricingRate
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 AdminSkuPricingRate

Properties

CurrencyCode

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

The currency supported, in the format specified by ISO-4217

Remarks

Required

UnitPrice

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

The amount for the currency type.

Remarks

Required

In this article
Back to top