/* Options: Date: 2026-09-23 01:32:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ApsConfigPutRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/aps/config", Verbs="PUT,OPTIONS") public static class ApsConfigPutRequest implements IReturn { public String ClientId = null; public String ClientSecret = null; public String getClientId() { return ClientId; } public ApsConfigPutRequest setClientId(String value) { this.ClientId = value; return this; } public String getClientSecret() { return ClientSecret; } public ApsConfigPutRequest setClientSecret(String value) { this.ClientSecret = value; return this; } private static Object responseType = ApsConfigResponse.class; public Object getResponseType() { return responseType; } } public static class ApsConfigResponse { public ResponseStatus ResponseStatus = null; public Boolean Connected = null; public String ClientIdMasked = null; public Boolean HasSecret = null; public String BucketKey = null; public String ConnectedAt = null; public String LastCheck = null; public Boolean TestOk = null; public String TestMessage = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ApsConfigResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isConnected() { return Connected; } public ApsConfigResponse setConnected(Boolean value) { this.Connected = value; return this; } public String getClientIdMasked() { return ClientIdMasked; } public ApsConfigResponse setClientIdMasked(String value) { this.ClientIdMasked = value; return this; } public Boolean isHasSecret() { return HasSecret; } public ApsConfigResponse setHasSecret(Boolean value) { this.HasSecret = value; return this; } public String getBucketKey() { return BucketKey; } public ApsConfigResponse setBucketKey(String value) { this.BucketKey = value; return this; } public String getConnectedAt() { return ConnectedAt; } public ApsConfigResponse setConnectedAt(String value) { this.ConnectedAt = value; return this; } public String getLastCheck() { return LastCheck; } public ApsConfigResponse setLastCheck(String value) { this.LastCheck = value; return this; } public Boolean isTestOk() { return TestOk; } public ApsConfigResponse setTestOk(Boolean value) { this.TestOk = value; return this; } public String getTestMessage() { return TestMessage; } public ApsConfigResponse setTestMessage(String value) { this.TestMessage = value; return this; } } }