/* Options: Date: 2025-07-04 08:37:40 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetRetrieveDocNr.* //ExcludeTypes: //DefaultImports: */ export class GetRetrieveDocNrResponse { public DocumentNr: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetRetrieveDocNr implements IReturn { public DocumentId: string; public EmailMessageId: string; public EmailMessageIdBase64: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetRetrieveDocNr'; } public getMethod() { return 'GET'; } public createResponse() { return new GetRetrieveDocNrResponse(); } }