import { APIClient } from './aPIClient'; import { EventTypeRestriction } from './eventTypeRestriction'; import { Organisation } from './organisation'; import { OrganisationTypeRestriction } from './organisationTypeRestriction'; import { SystemClientType } from './systemClientType'; export interface OrganisationType { id?: number; api_id?: number; name?: string; system_default?: boolean; apiClient?: APIClient; eventTypeRestrictions?: Array; organisations?: Array; organisationTypeRestrictions?: Array; system_organisation_id?: number; systemOrganisationType?: SystemClientType; objectState?: OrganisationType.ObjectStateEnum; } export declare namespace OrganisationType { 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; }; }