Show / Hide Table of Contents

Class Product

Product description

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

Properties

BillingCategory

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

Metered service billing category

Name

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

Product name

Remarks

Required

PartNumber

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

Product part number

Remarks

Required

ProductCategory

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

Product category

ProvisioningGroup

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

Product provisioning group

UcmRateCardPartType

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

Rate card part type of Product

UnitOfMeasure

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

Unit of Measure

In this article
Back to top