/** * 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 { APIFlag } from './aPIFlag'; import { ApiUserTypeSecurityDefault } from './apiUserTypeSecurityDefault'; import { FAQ } from './fAQ'; import { Notification } from './notification'; import { OrganisationUserSecurity } from './organisationUserSecurity'; import { UserSecurity } from './userSecurity'; export interface EntType { id?: number; name?: string; is_system?: boolean; is_api?: boolean; is_organisation?: boolean; is_event?: boolean; allow_create?: boolean; allow_read?: boolean; allow_update?: boolean; allow_delete?: boolean; allow_flags?: boolean; allow_components?: boolean; apiUserTypeSecurityDefaults?: Array; apiFlags?: Array; notifications?: Array; organisationUserSecurities?: Array; userSecurities?: Array; allow_feed?: boolean; faqContext?: Array; faqEntity?: Array; objectState?: EntType.ObjectStateEnum; } export namespace EntType { 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 } }