Show / Hide Table of Contents

Class SubscriptionSku

SKU information.

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

Properties

Description

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

Description of the stock units.

LicensePartDescription

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

Description of the covered product belonging to this Sku.

MetricName

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

Base metric for billing the service.

Quantity

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

Quantity of the stock units.

Remarks

Required

Sku

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

Stock keeping unit id.

Remarks

Required

In this article
Back to top