Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 1.93 KB

ShopOrder1.md

File metadata and controls

30 lines (25 loc) · 1.93 KB

woocommerce_client.model.ShopOrder1

Load the model package

import 'package:woocommerce_client/woocommerce_client.dart';

Properties

Name Type Description Notes
parentId int Parent order ID. [optional]
status String Order status. [optional]
currency String Currency the order was created with, in ISO format. [optional]
customerId int User ID who owns the order. 0 for guests. [optional]
customerNote String Note left by customer during checkout. [optional]
billing ShopOrder1Billing [optional]
shipping ShopOrder1Shipping [optional]
paymentMethod String Payment method ID. [optional]
paymentMethodTitle String Payment method title. [optional]
transactionId String Unique transaction ID. [optional]
metaData List Meta data. [optional] [default to const []]
lineItems List Line items data. [optional] [default to const []]
shippingLines List Shipping lines data. [optional] [default to const []]
feeLines List Fee lines data. [optional] [default to const []]
couponLines List Coupons line data. [optional] [default to const []]
setPaid bool Define if the order is paid. It will set the status to processing and reduce stock items. [optional]

[Back to Model list] [Back to API list] [Back to README]