Show / Hide Table of Contents

Class ClassicSubscriptionSummary

Summary of subscription.

Inheritance
object
SubscriptionSummary
ClassicSubscriptionSummary
Inherited Members
SubscriptionSummary.Id
SubscriptionSummary.CompartmentId
SubscriptionSummary.ServiceName
SubscriptionSummary.TimeCreated
SubscriptionSummary.TimeUpdated
SubscriptionSummary.FreeformTags
SubscriptionSummary.DefinedTags
SubscriptionSummary.SystemTags
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 ClassicSubscriptionSummary : SubscriptionSummary

Properties

ClassicSubscriptionId

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

Classic subscription ID.

Remarks

Required

EndDate

Declaration
[JsonProperty(PropertyName = "endDate")]
public DateTime? EndDate { get; set; }
Property Value
Type Description
DateTime?

Subscription end time.

IsClassicSubscription

Declaration
[JsonProperty(PropertyName = "isClassicSubscription")]
public bool? IsClassicSubscription { get; set; }
Property Value
Type Description
bool?

Specifies whether or not the subscription is from classic systems.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClassicSubscriptionLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
ClassicSubscriptionLifecycleState?

Lifecycle state of the subscription.

PaymentModel

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

The pay model of the subscription, such as 'Pay as you go' or 'Monthly'.

RegionAssignment

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

Region for the subscription.

StartDate

Declaration
[JsonProperty(PropertyName = "startDate")]
public DateTime? StartDate { get; set; }
Property Value
Type Description
DateTime?

Subscription start time.

In this article
Back to top