/* Options: Date: 2024-10-18 04:26:25 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: UpdateDocumentWithEmailProperties.* //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 UpdateDocumentWithEmailProperties implements IReturn { public String ItemId = null; public String EwsUrl = null; public String Token = null; public UUID DocumentId = null; public Boolean EmailSend = null; public String getItemId() { return ItemId; } public UpdateDocumentWithEmailProperties setItemId(String value) { this.ItemId = value; return this; } public String getEwsUrl() { return EwsUrl; } public UpdateDocumentWithEmailProperties setEwsUrl(String value) { this.EwsUrl = value; return this; } public String getToken() { return Token; } public UpdateDocumentWithEmailProperties setToken(String value) { this.Token = value; return this; } public UUID getDocumentId() { return DocumentId; } public UpdateDocumentWithEmailProperties setDocumentId(UUID value) { this.DocumentId = value; return this; } public Boolean isEmailSend() { return EmailSend; } public UpdateDocumentWithEmailProperties setEmailSend(Boolean value) { this.EmailSend = value; return this; } private static Object responseType = Boolean.class; public Object getResponseType() { return responseType; } } }