OrderCreation: {
    cancelReason: CancelReason | null;
    canceledAt: Date | null;
    cartId?: string;
    checkoutId?: string;
    closedAt: Date | null;
    customer: Customer;
    lineItems: LineItem[];
    organizationId: string;
    status: Status;
    subtotalPrice: number;
    totalPrice: number;
    totalTax: number;
} & util.WithCustomFields

Type declaration

  • cancelReason: CancelReason | null
  • canceledAt: Date | null
  • Optional cartId?: string
  • Optional checkoutId?: string
  • closedAt: Date | null
  • customer: Customer
  • lineItems: LineItem[]
  • organizationId: string
  • status: Status
  • subtotalPrice: number
  • totalPrice: number
  • totalTax: number

Generated using TypeDoc