/** * 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 { APIClient } from './aPIClient'; import { ApiUser } from './apiUser'; import { Artist } from './artist'; import { Bank } from './bank'; import { BasketItem } from './basketItem'; import { Country } from './country'; import { DbGeography } from './dbGeography'; import { EntityFlag } from './entityFlag'; import { Event } from './event'; import { OrganisationImage } from './organisationImage'; import { OrganisationSocialLink } from './organisationSocialLink'; import { OrganisationType } from './organisationType'; import { OrganisationUser } from './organisationUser'; import { OrganisationUserType } from './organisationUserType'; import { Venue } from './venue'; export interface Organisation { id?: number; api_id?: number; type?: number; name?: string; sub_text?: string; description?: string; client_commision_type?: number; client_commision_amount?: number; active?: boolean; ph_mobile?: string; ph_office?: string; e_mail?: string; approved?: boolean; vendor_id?: string; streetaddress1?: string; streetaddress2?: string; locality?: string; url?: string; region?: string; country_code?: string; zip_postcode?: string; nac?: string; confidence?: number; created_by?: number; created_date?: Date; bank_id?: string; geoLocation?: DbGeography; apiClient?: APIClient; creator?: ApiUser; artists?: Array; bank?: Bank; basketItems?: Array; country?: Country; events?: Array; organisationImages?: Array; organisationType?: OrganisationType; organisationUsers?: Array; organisationUserTypes?: Array; venues?: Array; flags?: Array; order_confirmation_message?: string; socialLinks?: Array; objectState?: Organisation.ObjectStateEnum; } export namespace Organisation { 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 } }