Show / Hide Table of Contents

Class AdminPublisherSku

Sku details for private offers

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

Properties

Description

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

Sku description

Remarks

Required

Meter

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

The meter of the SKU.

ProductCode

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

Sku name

Remarks

Required

Rates

Declaration
[Required(ErrorMessage = "Rates is required.")]
[JsonProperty(PropertyName = "rates")]
public List<AdminSkuPricingRate> Rates { get; set; }
Property Value
Type Description
List<AdminSkuPricingRate>

List of pricing rates for listing

Remarks

Required

In this article
Back to top