/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * 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 { Addressee } from "./Addressee"; import { Document } from "./Document"; export declare class DocumentMessage { constructor(json: JSON | any); id?: string; publicationId?: string; sender?: Addressee; mandatee?: Addressee; destinations?: Array; important?: boolean; encrypted?: boolean; usePublicationReceipt?: boolean; useReceivedReceipt?: boolean; useReadReceipt?: boolean; hasAnnex?: boolean; hasFreeInformations?: boolean; publicationDateTime?: number; expirationDateTime?: number; size?: string; customMetas?: { [key: string]: string; }; document?: Document; freeText?: string; freeInformationTableTitle?: string; freeInformationTableRows?: { [key: string]: string; }; patientInss?: string; annex?: Array; copyMailTo?: Array; documentTitle?: string; annexList?: Array; }