Show / Hide Table of Contents

Class InvoiceLineSummary

Product items of the invoice

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.OspgatewayService.Models
Assembly: OCI.DotNetSDK.Ospgateway.dll
Syntax
public class InvoiceLineSummary

Properties

Currency

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

NetUnitPrice

Declaration
[JsonProperty(PropertyName = "netUnitPrice")]
public decimal? NetUnitPrice { get; set; }
Property Value
Type Description
decimal?

Unit price of the ordered product

OrderNo

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

Product of the item

PartNumber

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

Part number

Product

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

Product of the item

Remarks

Required

Quantity

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

Quantity of the ordered product

TimeEnd

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

End date

TimeStart

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

Start date

TotalPrice

Declaration
[JsonProperty(PropertyName = "totalPrice")]
public decimal? TotalPrice { get; set; }
Property Value
Type Description
decimal?

Total price of the ordered product (Net unit price x quantity)

In this article
Back to top