Show / Hide Table of Contents

Class SubscriptionSummary

Subscription summary

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

Properties

Currency

Declaration
[JsonProperty(PropertyName = "currency")]
public SubscriptionCurrency Currency { get; set; }
Property Value
Type Description
SubscriptionCurrency

HoldReason

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

Hold reason of the plan

ServiceName

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

Customer friendly service name provided by PRG

Status

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

Status of the plan

SubscribedServices

Declaration
[JsonProperty(PropertyName = "subscribedServices")]
public List<SubscriptionSubscribedService> SubscribedServices { get; set; }
Property Value
Type Description
List<SubscriptionSubscribedService>

List of Subscribed Services of the plan

TimeEnd

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

Represents the date when the last service of the subscription ends

TimeHoldReleaseEta

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

Represents the date of the hold release

TimeStart

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

Represents the date when the first service of the subscription was activated

In this article
Back to top