ExpandedOrder: {
    cancelReason: CancelReason | null;
    canceledAt: Date | null;
    cart: unknown;
    checkout: unknown;
    closedAt: Date | null;
    createdAt: Date;
    currency: Currency;
    customer: ExpandedCustomer;
    id: string;
    lineItems: ExpandedItem[];
    organization: unknown | null;
    status: Status;
    subtotalPrice: number;
    totalPrice: number;
    totalTax: number;
    updatedAt: Date;
} & util.WithCustomFields

Type declaration

  • cancelReason: CancelReason | null
  • canceledAt: Date | null
  • cart: unknown
  • checkout: unknown
  • closedAt: Date | null
  • createdAt: Date
  • currency: Currency
  • customer: ExpandedCustomer
  • id: string
  • lineItems: ExpandedItem[]
  • organization: unknown | null
  • status: Status
  • subtotalPrice: number
  • totalPrice: number
  • totalTax: number
  • updatedAt: Date

Description

Expanded order data type

Generated using TypeDoc