Show / Hide Table of Contents

Class InvoiceLineSummary

Invoice Line

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

Properties

ArInvoiceNumber

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

AR Invoice Number for Invoice Line

DataCenter

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

Data Center Attribute.

Remarks

Required

Id

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

SPM Invoice Line internal identifier

Remarks

Required

Product

Declaration
[Required(ErrorMessage = "Product is required.")]
[JsonProperty(PropertyName = "product")]
public InvoicingProduct Product { get; set; }
Property Value
Type Description
InvoicingProduct
Remarks

Required

TimeEnd

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

Usage end time

Remarks

Required

TimeStart

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

Usage start time

Remarks

Required

In this article
Back to top