/* Options: Date: 2024-10-18 04:26:22 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetRetrieveDocNr.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class GetRetrieveDocNr implements IReturn { public UUID DocumentId = null; public String EmailMessageId = null; public String EmailMessageIdBase64 = null; public UUID getDocumentId() { return DocumentId; } public GetRetrieveDocNr setDocumentId(UUID value) { this.DocumentId = value; return this; } public String getEmailMessageId() { return EmailMessageId; } public GetRetrieveDocNr setEmailMessageId(String value) { this.EmailMessageId = value; return this; } public String getEmailMessageIdBase64() { return EmailMessageIdBase64; } public GetRetrieveDocNr setEmailMessageIdBase64(String value) { this.EmailMessageIdBase64 = value; return this; } private static Object responseType = GetRetrieveDocNrResponse.class; public Object getResponseType() { return responseType; } } public static class GetRetrieveDocNrResponse { public String DocumentNr = null; public String getDocumentNr() { return DocumentNr; } public GetRetrieveDocNrResponse setDocumentNr(String value) { this.DocumentNr = value; return this; } } }