import { ApiUserVM } from './apiUserVM'; import { AttendeeReservationItem } from './attendeeReservationItem'; import { PaymentTypeVM } from './paymentTypeVM'; import { PromotionVM } from './promotionVM'; export interface CreateReservationAttendeeVM { delivery_email?: string; phone?: string; special_requests?: string; discount?: number; first_name?: string; last_name?: string; line_amount?: number; send_ticket?: boolean; promotion?: PromotionVM; number_of_attendees?: number; paymentType?: PaymentTypeVM; reservationItem?: AttendeeReservationItem; unit_price?: number; user?: ApiUserVM; reservation_date?: Date; attendee_slot?: number; can_update?: boolean; can_delete?: boolean; }