/* Options: Date: 2025-05-10 01:06:50 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: EnableEmailRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * EnableEmailRequires active-e Vortx E-Commerce. */ @Route(Path="/EnableEmail", Verbs="POST") @DataContract public static class EnableEmailRequest extends BaseRequest implements IReturn { @DataMember public String Email = null; @DataMember public Integer Acct = null; @DataMember public Integer WebId = null; @DataMember public String Token = null; public String getEmail() { return Email; } public EnableEmailRequest setEmail(String value) { this.Email = value; return this; } public Integer getAcct() { return Acct; } public EnableEmailRequest setAcct(Integer value) { this.Acct = value; return this; } public Integer getWebId() { return WebId; } public EnableEmailRequest setWebId(Integer value) { this.WebId = value; return this; } public String getToken() { return Token; } public EnableEmailRequest setToken(String value) { this.Token = value; return this; } private static Object responseType = EnableEmailResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class EnableEmailResponse extends BaseResponse { @DataMember public String AccountStatus = null; public String getAccountStatus() { return AccountStatus; } public EnableEmailResponse setAccountStatus(String value) { this.AccountStatus = 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 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; } } }