/* Options: Date: 2026-06-01 15:23:08 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddRemAttachment.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/AddRemAttachment/{ClientKey}") open class AddRemAttachment : IReturn { var ClientKey:String? = null var AuthorizationID:String? = null var RemID:Long? = null var AttacmentName:String? = null var Content:ByteArray? = null var SubscriberID:String? = null companion object { private val responseType = AddRemAttachmentResponse::class.java } override fun getResponseType(): Any? = AddRemAttachment.responseType } open class AddRemAttachmentResponse { var AttachmentID:Long? = null }