Show / Hide Table of Contents

Class SubscriptionLineItemSummary

Summary of line items in a subscription.

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

Properties

BillingModel

Declaration
[Required(ErrorMessage = "BillingModel is required.")]
[JsonProperty(PropertyName = "billingModel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BillingModel? BillingModel { get; set; }
Property Value
Type Description
BillingModel?

Billing model supported by the associated line item.

Remarks

Required

Id

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

Subscription line item identifier.

Remarks

Required

ProductCode

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

Product code.

Remarks

Required

Quantity

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

Product number.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeEnded

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

The time the subscription item and associated products should end. An RFC 3339 formatted date and time string.

Remarks

Required

TimeStarted

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

The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.

Remarks

Required

In this article
Back to top