/** * 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 { Country } from './country'; import { DbGeography } from './dbGeography'; import { EntityFlag } from './entityFlag'; import { Event } from './event'; import { Organisation } from './organisation'; export interface Venue { id?: number; name?: string; description?: string; streetaddress1?: string; streetaddress2?: string; locality?: string; region?: string; country_code?: string; zip_postcode?: string; nac?: string; confidence?: number; organisation_id?: number; geoLocation?: DbGeography; country?: Country; events?: Array; organisation?: Organisation; flags?: Array; objectState?: Venue.ObjectStateEnum; } export namespace Venue { export type ObjectStateEnum = 0 | 1 | 2 | 3; export const ObjectStateEnum = { NUMBER_0: 0 as ObjectStateEnum, NUMBER_1: 1 as ObjectStateEnum, NUMBER_2: 2 as ObjectStateEnum, NUMBER_3: 3 as ObjectStateEnum } }