Class OrderItem#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.Models.OrderItem : xbe.sdk.Object#

A line item of an order for a particular service or product.

Public Functions

OrderItem ()#
OrderItem (Object obj)

Properties

Guid ProductUid { get; set; }#

The unique identifier of the desired product or service.

Currency Currency { get; set; }#

The form of currency pertaining to the price.

string Description { get; set; }#

The detailed description of the desired product or service.

double ListPrice { get; set; }#

The original listed price of the product.

double Price { get; set; }#

The adjusted price after discounts have been applied.

int Quantity { get; set; }#

The quantity of the product that was rendered.

bool Renewal { get; set; }#

Indicates if this item represents a renewal of an existing product or service.

Public Static Functions

new OrderItem Parse (string json)#

Parses the given JSON encoded string into a new OrderItem instance.

Param json:

Return: