Class Order#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.Models.Order : xbe.sdk.EntityBase#

A detailed list of products and services that a customer wishes to or has purchased.

REQUIRES: Purchasing Services

Public Functions

Order ()#
Order (Object obj)

Properties

int Id { get; set; }#

The unique order number.

OrderItem > Items { get; set; }#

The list of all items of products and services included.

string PromoCode { get; set; }#

The unique identifier of the promotional code to apply to this order.

string Referral { get; set; }#

The unique identifier of the third party that referred this subscription sale.

double Subtotal { get; set; }#

The sum amount of all items listed in the order.

double Tax { get; set; }#

The tax to apply, if applicable, expressed as a percent.

double Total { get; set; }#

The total amount to be paid.

OrderStatus Status { get; set; }#

The current processing status of the order.

Guid WalletUid { get; set; }#

The unique identifier of the wallet that wants to purchase the order.

Public Static Functions

new Order Parse (string json)#

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

Param json:

Return: