import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_Location" of service "API_EHS_REPORT_INCIDENT_SRV". */ export declare class Location extends Entity implements LocationType { /** * Technical entity name for Location. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the Location entity */ static _keys: string[]; /** * NodeID. */ locationUuid: DeserializedType; /** * Location Name. * Specifies the name of the location. * Maximum length: 60. */ locationName: DeserializedType; /** * Location Type Description. * Maximum length: 40. */ locationType: DeserializedType; /** * Geo Location for Latitude. * Indicates the latitude coordinate of a geographical location according to standard WGS 84. * You can use this master data to identify the exact position of a location. If you have integrated a map into the Environment, Health, and Safety component, you can use this data to visualize the location's position on the map. */ locationLatitude: DeserializedType; /** * Geo Location for Longitude. * Indicates the longitude coordinate of a geographical location according to standard WGS 84. * You can use this master data to identify the exact position of a location. If you have integrated a map into the SAP Environment, Health, and Safety component, you can use this data to visualize the location's position on the map. */ locationLongtitude: DeserializedType; } export interface LocationType { locationUuid: DeserializedType; locationName: DeserializedType; locationType: DeserializedType; locationLatitude: DeserializedType; locationLongtitude: DeserializedType; } //# sourceMappingURL=Location.d.ts.map