Show / Hide Table of Contents

Class Sku

A single subscription SKU.

Inheritance
object
Sku
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.TenantmanagercontrolplaneService.Models
Assembly: OCI.DotNetSDK.Tenantmanagercontrolplane.dll
Syntax
public class Sku

Properties

Name

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

SKU name.

Number

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

SKU number.

Quantity

Declaration
[JsonProperty(PropertyName = "quantity")]
public int? Quantity { get; set; }
Property Value
Type Description
int?

SKU quantity.

In this article
Back to top