Show / Hide Table of Contents

Class Commitment

Subscribed Service commitment summary

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

Properties

AvailableAmount

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

Commitment available amount

FundedAllocationValue

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

Funded Allocation line value Example: 12000.00

Id

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

SPM internal Commitment ID

Remarks

Required

Quantity

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

Commitment quantity

SubscribedServiceId

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

SPM internal Subscribed Service ID

TimeEnd

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

Commitment end date

TimeStart

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

Commitment start date

UsedAmount

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

Commitment used amount

In this article
Back to top