/* Options: Date: 2026-04-05 18:07:01 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EntityContactsLogin.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Entity-Contacts/Login", Verbs="POST") public static class EntityContactsLogin implements IReturn { private static Object responseType = EntityLoginViewModel.class; public Object getResponseType() { return responseType; } } public static class EntityLoginViewModel { public Integer EntityContactId = null; public UUID EntityContactGuid = null; public String EmailAddress = null; public String Token = null; public Boolean DarkMode = null; public Boolean Success = null; public Boolean EmailAddressVerifiedError = null; public Integer getEntityContactId() { return EntityContactId; } public EntityLoginViewModel setEntityContactId(Integer value) { this.EntityContactId = value; return this; } public UUID getEntityContactGuid() { return EntityContactGuid; } public EntityLoginViewModel setEntityContactGuid(UUID value) { this.EntityContactGuid = value; return this; } public String getEmailAddress() { return EmailAddress; } public EntityLoginViewModel setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getToken() { return Token; } public EntityLoginViewModel setToken(String value) { this.Token = value; return this; } public Boolean isDarkMode() { return DarkMode; } public EntityLoginViewModel setDarkMode(Boolean value) { this.DarkMode = value; return this; } public Boolean isSuccess() { return Success; } public EntityLoginViewModel setSuccess(Boolean value) { this.Success = value; return this; } public Boolean isEmailAddressVerifiedError() { return EmailAddressVerifiedError; } public EntityLoginViewModel setEmailAddressVerifiedError(Boolean value) { this.EmailAddressVerifiedError = value; return this; } } }