/* Options: Date: 2025-07-04 09:41:28 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SaveDraftMail.* //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 SaveDraftMail extends Outlook365Properties implements IReturn { public UUID RegistrationProfileID = null; public ArrayList Values = null; public UUID getRegistrationProfileID() { return RegistrationProfileID; } public SaveDraftMail setRegistrationProfileID(UUID value) { this.RegistrationProfileID = value; return this; } public ArrayList getValues() { return Values; } public SaveDraftMail setValues(ArrayList value) { this.Values = value; return this; } private static Object responseType = Boolean.class; public Object getResponseType() { return responseType; } } public static class RegistrationValue { public UUID Key = null; public String Value = null; public String ShadowValue = null; public UUID getKey() { return Key; } public RegistrationValue setKey(UUID value) { this.Key = value; return this; } public String getValue() { return Value; } public RegistrationValue setValue(String value) { this.Value = value; return this; } public String getShadowValue() { return ShadowValue; } public RegistrationValue setShadowValue(String value) { this.ShadowValue = 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; } } }