/** * 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 { AddressVM } from './addressVM'; import { ApiUserVM } from './apiUserVM'; import { CurrencyVM } from './currencyVM'; import { OrderDetailVM } from './orderDetailVM'; import { PaymentTypeVM } from './paymentTypeVM'; export interface OrderVM { id?: string; order_date?: Date; orderDetails?: Array; address?: AddressVM; order_email_address?: string; phone?: string; special_requests?: string; manual_payment?: boolean; payment_type_id?: number; paymentType?: PaymentTypeVM; order_total?: number; invoice_number?: string; email_ticket?: boolean; ticket_sent?: boolean; download_url?: string; apiUser?: ApiUserVM; currency?: CurrencyVM; can_update?: boolean; can_delete?: boolean; }