/* Options: Date: 2026-06-01 15:13:36 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: AddRemAttachment.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/AddRemAttachment/{ClientKey}") public static class AddRemAttachment implements IReturn { public String ClientKey = null; public String AuthorizationID = null; public Long RemID = null; public String AttacmentName = null; public byte[] Content = null; public String SubscriberID = null; public String getClientKey() { return ClientKey; } public AddRemAttachment setClientKey(String value) { this.ClientKey = value; return this; } public String getAuthorizationID() { return AuthorizationID; } public AddRemAttachment setAuthorizationID(String value) { this.AuthorizationID = value; return this; } public Long getRemID() { return RemID; } public AddRemAttachment setRemID(Long value) { this.RemID = value; return this; } public String getAttacmentName() { return AttacmentName; } public AddRemAttachment setAttacmentName(String value) { this.AttacmentName = value; return this; } public byte[] getContent() { return Content; } public AddRemAttachment setContent(byte[] value) { this.Content = value; return this; } public String getSubscriberID() { return SubscriberID; } public AddRemAttachment setSubscriberID(String value) { this.SubscriberID = value; return this; } private static Object responseType = AddRemAttachmentResponse.class; public Object getResponseType() { return responseType; } } public static class AddRemAttachmentResponse { public Long AttachmentID = null; public Long getAttachmentID() { return AttachmentID; } public AddRemAttachmentResponse setAttachmentID(Long value) { this.AttachmentID = value; return this; } } }