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 declare namespace Organisation { type ObjectStateEnum = 0 | 1 | 2 | 3; const ObjectStateEnum: { NUMBER_0: import("../../../../../../Users/justin/source/projects/typescript-angular436/model/aspNetRole").AspNetRole.ObjectStateEnum; NUMBER_1: import("../../../../../../Users/justin/source/projects/typescript-angular436/model/aspNetRole").AspNetRole.ObjectStateEnum; NUMBER_2: import("../../../../../../Users/justin/source/projects/typescript-angular436/model/aspNetRole").AspNetRole.ObjectStateEnum; NUMBER_3: import("../../../../../../Users/justin/source/projects/typescript-angular436/model/aspNetRole").AspNetRole.ObjectStateEnum; }; }