import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_Attachment" of service "API_EHS_REPORT_INCIDENT_SRV". */ export declare class Attachment extends Entity implements AttachmentType { /** * Technical entity name for Attachment. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the Attachment entity */ static _keys: string[]; /** * NodeID. */ attachmentDocumentUuid: DeserializedType; /** * HTML content type. * Maximum length: 128. */ mimeType: DeserializedType; /** * Relative storage location of physical document. * Maximum length: 255. */ fileName: DeserializedType; } export interface AttachmentType { attachmentDocumentUuid: DeserializedType; mimeType: DeserializedType; fileName: DeserializedType; } //# sourceMappingURL=Attachment.d.ts.map