import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v4'; import { TeamCategories, TeamCategoriesType } from './TeamCategories'; import { TeamTypeTexts, TeamTypeTextsType } from './TeamTypeTexts'; /** * This class represents the entity "TeamTypes" of service "com.sap.gateway.srvd_a2x.api_respym_team_srv.v0001". */ export declare class TeamTypes extends Entity implements TeamTypesType { /** * Technical entity name for TeamTypes. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the TeamTypes entity */ static _keys: string[]; /** * Respy Mgmt Team Type. * Maximum length: 10. */ respyMgmtTeamType: DeserializedType; /** * Respy Mgmt Team Category. * Maximum length: 10. */ respyMgmtTeamCategory: DeserializedType; /** * One-to-one navigation property to the [[TeamCategories]] entity. */ teamCategory?: TeamCategories | null; /** * One-to-many navigation property to the [[TeamTypeTexts]] entity. */ teamTypeTexts: TeamTypeTexts[]; } export interface TeamTypesType { respyMgmtTeamType: DeserializedType; respyMgmtTeamCategory: DeserializedType; teamCategory?: TeamCategoriesType | null; teamTypeTexts: TeamTypeTextsType[]; } //# sourceMappingURL=TeamTypes.d.ts.map