import { ApiUserVM } from './apiUserVM'; import { AttendeeTicket } from './attendeeTicket'; import { PaymentTypeVM } from './paymentTypeVM'; import { PromotionVM } from './promotionVM'; export interface CreateAttendeeVM { delivery_email?: string; phone?: string; special_requests?: string; discount?: number; first_name?: string; last_name?: string; line_amount?: number; send_ticket?: boolean; promotion?: PromotionVM; quantity?: number; paymentType?: PaymentTypeVM; ticketRelease?: AttendeeTicket; unit_price?: number; user?: ApiUserVM; ticket_date?: Date; can_update?: boolean; can_delete?: boolean; }