/* Options: Date: 2026-06-22 22:48:17 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: CustomerLinkRevokeRequest.* //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/customerlink/{CustomerLinkId}", Verbs="DELETE,OPTIONS") public static class CustomerLinkRevokeRequest implements IReturn { public Integer CustomerLinkId = null; public Integer getCustomerLinkId() { return CustomerLinkId; } public CustomerLinkRevokeRequest setCustomerLinkId(Integer value) { this.CustomerLinkId = value; return this; } private static Object responseType = CustomerLinkRevokeResponse.class; public Object getResponseType() { return responseType; } } public static class CustomerLinkRevokeResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public CustomerLinkRevokeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public CustomerLinkRevokeResponse setSuccess(Boolean value) { this.Success = value; return this; } } }