/* Options: Date: 2026-06-01 15:13:48 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RemoveRemAttachment.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/RemoveRemAttachment/{ClientKey}") public static class RemoveRemAttachment implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public Long AttachmentID = null; public Long RemID = null; public String getClientKey() { return ClientKey; } public RemoveRemAttachment setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public RemoveRemAttachment setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public Long getAttachmentID() { return AttachmentID; } public RemoveRemAttachment setAttachmentID(Long value) { this.AttachmentID = value; return this; } public Long getRemID() { return RemID; } public RemoveRemAttachment setRemID(Long value) { this.RemID = value; return this; } private static Object responseType = RemoveRemAttachmentResponse.class; public Object getResponseType() { return responseType; } } public static class RemoveRemAttachmentResponse { public Boolean Result = null; public Boolean isResult() { return Result; } public RemoveRemAttachmentResponse setResult(Boolean value) { this.Result = value; return this; } } }