import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_Person" of service "API_EHS_REPORT_INCIDENT_SRV". */ export declare class Person extends Entity implements PersonType { /** * Technical entity name for Person. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the Person entity */ static _keys: string[]; /** * Name of Involved Person. * Maximum length: 80. */ personFullName: DeserializedType; /** * Role of Involved Person. * Indicates the role or roles of a person or organization involved in an incident, such as a Witness. * Maximum length: 21. */ personInvolvedRole: DeserializedType; /** * NodeID. */ personInvolvedUuid: DeserializedType; } export interface PersonType { personFullName: DeserializedType; personInvolvedRole: DeserializedType; personInvolvedUuid: DeserializedType; } //# sourceMappingURL=Person.d.ts.map