/** * 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. */ export interface EventRefundVM { event_id: number; ticket_date: Date; cancel_tickets?: boolean; refund_tickets?: boolean; send_email?: boolean; message?: string; reason: EventRefundVM.ReasonEnum; number_of_attendees?: number; can_update?: boolean; can_delete?: boolean; } export namespace EventRefundVM { export type ReasonEnum = 1 | 2 | 3 | 4; export const ReasonEnum = { NUMBER_1: 1 as ReasonEnum, NUMBER_2: 2 as ReasonEnum, NUMBER_3: 3 as ReasonEnum, NUMBER_4: 4 as ReasonEnum } }