You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
2.4 KiB

/**
* OrderCreate
*/
export interface createOrderDataType {
/**
* Actual Amount
*/
actual_amount?: number | null;
/**
* Address IdID
*/
address_id: number;
/**
* Buyer Message
*/
buyer_message?: null | string;
/**
* Create Payment
*/
create_payment?: boolean | null;
/**
* Currency
*/
currency?: null | string;
/**
* Discount Amount
*/
discount_amount?: number | null;
/**
* Domestic Shipping Fee
*/
domestic_shipping_fee?: number | null;
/**
* Items
*/
items: OrderItemBase[];
/**
* Payment Method
*/
payment_method?: null | string;
/**
* Receiver Address
*/
receiver_address: string;
/**
* Shipping Fee
*/
shipping_fee?: number | null;
/**
* Total Amount
*/
total_amount?: number | null;
/**
* Transport Type 1- 2-
*/
transport_type?: number | null;
[property: string]: any;
}
/**
* OrderItemBase
*/
export interface OrderItemBase {
/**
* Cart Item IdID
*/
cart_item_id?: number | null;
/**
* Offer IdID
*/
3 weeks ago
offer_id: string | number;
/**
* Product Image
*/
product_image?: null | string;
/**
* Product Name
*/
product_name: string;
/**
* Product Name Ar
*/
product_name_ar?: null | string;
/**
* Product Name En
*/
product_name_en?: null | string;
/**
* Product Name Fr
*/
product_name_fr?: null | string;
/**
* Quantity
*/
quantity: number;
/**
* Sku AttributesSKU属性
*/
sku_attributes?: { [key: string]: any }[] | null;
/**
* Sku IdSKU ID
*/
3 weeks ago
sku_id?: number | null | string;
/**
* Total Price
*/
total_price: number;
/**
* Unit Price
*/
unit_price: number;
[property: string]: any;
}