/* Options: Date: 2025-05-10 00:46:21 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: ContactActionsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * ContactActions web service. */ @Route(Path="/ContactActions", Verbs="GET") @DataContract public static class ContactActionsRequest extends BaseSecureRequest implements IReturn { @DataMember public Long ActionGroupId = null; public Long getActionGroupId() { return ActionGroupId; } public ContactActionsRequest setActionGroupId(Long value) { this.ActionGroupId = value; return this; } private static Object responseType = ContactActionsResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class ContactActionsResponse extends BaseResponse { @DataMember public ArrayList Actions = null; public ArrayList getActions() { return Actions; } public ContactActionsResponse setActions(ArrayList value) { this.Actions = 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 BaseSecureRequest extends BaseRequest { /** * */ @DataMember @ApiMember(DataType="string", Description="", Name="Token", ParameterType="Header") public String Token = null; /** * */ @DataMember @ApiMember(DataType="string", Description="", Name="DeviceId", ParameterType="Header") public String DeviceId = null; /** * */ @DataMember @ApiMember(DataType="string", Description="", IsRequired=true, Name="AppId", ParameterType="Header") public String AppId = null; public String getToken() { return Token; } public BaseSecureRequest setToken(String value) { this.Token = value; return this; } public String getDeviceId() { return DeviceId; } public BaseSecureRequest setDeviceId(String value) { this.DeviceId = value; return this; } public String getAppId() { return AppId; } public BaseSecureRequest setAppId(String value) { this.AppId = value; return this; } } @DataContract public static class ContactAction { @DataMember public Long Id = null; @DataMember public String Description = null; @DataMember public Boolean Popup = null; @DataMember public Boolean Closed = null; @DataMember public Boolean TriggersExternalEvents = null; @DataMember public String LanID = null; @DataMember public String ActionGroup = null; public Long getId() { return Id; } public ContactAction setId(Long value) { this.Id = value; return this; } public String getDescription() { return Description; } public ContactAction setDescription(String value) { this.Description = value; return this; } public Boolean isPopup() { return Popup; } public ContactAction setPopup(Boolean value) { this.Popup = value; return this; } public Boolean isClosed() { return Closed; } public ContactAction setClosed(Boolean value) { this.Closed = value; return this; } public Boolean isTriggersExternalEvents() { return TriggersExternalEvents; } public ContactAction setTriggersExternalEvents(Boolean value) { this.TriggersExternalEvents = value; return this; } public String getLanID() { return LanID; } public ContactAction setLanID(String value) { this.LanID = value; return this; } public String getActionGroup() { return ActionGroup; } public ContactAction setActionGroup(String value) { this.ActionGroup = 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; } } }