/* Options: Date: 2024-10-18 04:26:23 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: GetEmailDraft.* //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 GetEmailDraft extends Outlook365Properties implements IReturn { private static Object responseType = StringResponse.class; public Object getResponseType() { return responseType; } } public static class StringResponse { public String Value = null; public String getValue() { return Value; } public StringResponse setValue(String value) { this.Value = value; return this; } } public static class Outlook365Properties { public String PidTag = null; public String ItemId = null; public String EwsUrl = null; public String Token = null; public String getPidTag() { return PidTag; } public Outlook365Properties setPidTag(String value) { this.PidTag = value; return this; } public String getItemId() { return ItemId; } public Outlook365Properties setItemId(String value) { this.ItemId = value; return this; } public String getEwsUrl() { return EwsUrl; } public Outlook365Properties setEwsUrl(String value) { this.EwsUrl = value; return this; } public String getToken() { return Token; } public Outlook365Properties setToken(String value) { this.Token = value; return this; } } }