/* Options: Date: 2025-05-10 00:34:26 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CheckEmailRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * CheckEmailRequires active-e Vortx E-Commerce. */ @Route(Path="/CheckEmail", Verbs="GET") @DataContract public static class CheckEmailRequest extends BaseRequest implements IReturn { @DataMember public String Email = null; @DataMember public Integer WebId = null; public String getEmail() { return Email; } public CheckEmailRequest setEmail(String value) { this.Email = value; return this; } public Integer getWebId() { return WebId; } public CheckEmailRequest setWebId(Integer value) { this.WebId = value; return this; } private static Object responseType = CheckEmailResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class CheckEmailResponse extends BaseResponse { @DataMember public ArrayList AccountInfo = null; public ArrayList getAccountInfo() { return AccountInfo; } public CheckEmailResponse setAccountInfo(ArrayList value) { this.AccountInfo = value; return this; } } @DataContract public static class BaseRequest { /** * This is your AIM API Key provided by Tri-Tech */ @DataMember @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="header") public String ApiKey = null; @DataMember @ApiMember(DataType="string", Name="OAuthToken", ParameterType="header") public String OAuthToken = null; public String getApiKey() { return ApiKey; } public BaseRequest setApiKey(String value) { this.ApiKey = value; return this; } public String getOAuthToken() { return OAuthToken; } public BaseRequest setOAuthToken(String value) { this.OAuthToken = value; return this; } } @DataContract public static class AccountInfo { @DataMember public Integer Id = null; @DataMember public Boolean Enabled = null; public Integer getId() { return Id; } public AccountInfo setId(Integer value) { this.Id = value; return this; } public Boolean isEnabled() { return Enabled; } public AccountInfo setEnabled(Boolean value) { this.Enabled = value; return this; } } @DataContract public static class BaseResponse { /** * */ @DataMember @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body") public BaseResponseResult Status = null; public BaseResponseResult getStatus() { return Status; } public BaseResponse setStatus(BaseResponseResult value) { this.Status = value; return this; } } }