/** * 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 { AudienceVM } from './audienceVM'; import { CurrencyVM } from './currencyVM'; import { EntityFlagVM } from './entityFlagVM'; import { EventArtistVM } from './eventArtistVM'; import { EventOrganisationVM } from './eventOrganisationVM'; import { EventStageVM } from './eventStageVM'; import { EventTypeVM } from './eventTypeVM'; import { ImageVM } from './imageVM'; import { RecurringOptionsVM } from './recurringOptionsVM'; import { TicketPurchaseVM } from './ticketPurchaseVM'; import { TimeZoneVM } from './timeZoneVM'; import { TourVM } from './tourVM'; import { VenueVM } from './venueVM'; export interface PublishedEventVM { id?: number; system_type?: number; client_event_id?: string; venue?: VenueVM; description?: string; type_id?: number; start_date?: Date; end_date?: Date; client_featured?: boolean; is_private?: boolean; is_published?: boolean; organisation?: EventOrganisationVM; title?: string; timeZone: TimeZoneVM; audience?: AudienceVM; dress_code?: string; display_start_time?: boolean; display_end_time?: boolean; facebook_event_id?: string; event_capacity?: number; email_summary?: string; user_payment_option_id?: number; currency?: CurrencyVM; artists?: Array; eventType?: EventTypeVM; stages?: Array; images?: Array; genres?: Array; ticketPurchase?: TicketPurchaseVM; recurring_options?: RecurringOptionsVM; tour_id?: number; tour?: TourVM; available_dates?: Array; flags?: Array; can_update?: boolean; can_delete?: boolean; }