Type alias Order

Order: {
    client_city: string | null;
    client_company: string | null;
    client_country: string | null;
    client_email: string | null;
    client_name: string | null;
    client_postal: string | null;
    client_street: string | null;
    client_street_number: string | null;
    client_taxid: string | null;
    created_at: string | null;
    id: number;
    items?: OrderItems[] | null;
    status: PaymentStatusType;
    subtotal: number;
    tax: number;
    total: number;
    updated_at: string | null;
    user_id: number | null;
}

Type declaration

  • client_city: string | null
  • client_company: string | null
  • client_country: string | null
  • client_email: string | null
  • client_name: string | null
  • client_postal: string | null
  • client_street: string | null
  • client_street_number: string | null
  • client_taxid: string | null
  • created_at: string | null
  • id: number
  • Optional items?: OrderItems[] | null
  • status: PaymentStatusType
  • subtotal: number
  • tax: number
  • total: number
  • updated_at: string | null
  • user_id: number | null

Generated using TypeDoc