export declare class Ticket { /** * Specifies the type of the ticket, such as ADULT, CHILD, SENIOR, STUDENT, or OTHER. */ type: TicketTypeEnum; /** * This field represents the count or number of tickets associated with the type. */ quantity: number; constructor(ticket: TicketProperties); } export type TicketTypeEnum = 'ADULT' | 'CHILD' | 'SENIOR' | 'STUDENT' | 'OTHER'; export interface TicketProperties { type: TicketTypeEnum; quantity: number; }