PrintifyOrderModel constructor
PrintifyOrderModel({
- String? id,
- required PrintifyAddress? address_to,
- required List<
PrintifyOrderLineItem> ? line_items, - required int? method,
- Map<
String, dynamic> ? metadata, - int? total_price,
- int? total_shipping,
- int? total_tax,
- String? status,
- List<
PrintifyShipmentModel> ? shipments, - String? created_at,
- String? sent_to_production_at,
- String? fulfilled_at,
This resource could be used, to get all Orders.
Implementation
PrintifyOrderModel({
this.id,
required this.address_to,
required this.line_items,
/// Method of shipping selected for the order, "1" is for standard shipping and "2" is for express shipping.
required this.method,
this.metadata,
this.total_price,
this.total_shipping,
this.total_tax,
this.status,
this.shipments,
this.created_at,
this.sent_to_production_at,
this.fulfilled_at,
});