/** * Innertickets API * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: v1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { ApiUser } from './apiUser'; import { Country } from './country'; import { Currency } from './currency'; import { DbGeography } from './dbGeography'; import { MerchantCurrency } from './merchantCurrency'; import { OrderDetail } from './orderDetail'; import { Transaction } from './transaction'; export interface Order { order_id?: string; order_email_address?: string; paid?: boolean; invoice_number?: number; order_date?: Date; bill_streetaddress1?: string; bill_streetaddress2?: string; bill_locality?: string; bill_region?: string; bill_country_code?: string; bill_zip_postcode?: string; bill_confidence?: string; bill_geoLocation?: DbGeography; order_total?: number; email_ticket?: boolean; ticket_sent?: boolean; currency_id?: number; merchant_currency_id?: string; api_user_id?: number; tax?: number; apiUser?: ApiUser; country?: Country; currency?: Currency; merchantCurrency?: MerchantCurrency; orderDetails?: Array; transactions?: Array; phone_number?: string; special_requests?: string; objectState?: Order.ObjectStateEnum; } export namespace Order { export type ObjectStateEnum = 0 | 1 | 2 | 3; export const ObjectStateEnum = { NUMBER_0: 0 as ObjectStateEnum, NUMBER_1: 1 as ObjectStateEnum, NUMBER_2: 2 as ObjectStateEnum, NUMBER_3: 3 as ObjectStateEnum } }