/* Options: Date: 2026-06-01 15:24:21 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: RemoveRemAttachment.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/RemoveRemAttachment/{ClientKey}") open class RemoveRemAttachment : IReturn { var ClientKey:String? = null var AuthorizationID:String? = null var AttachmentID:Long? = null var RemID:Long? = null companion object { private val responseType = RemoveRemAttachmentResponse::class.java } override fun getResponseType(): Any? = RemoveRemAttachment.responseType } open class RemoveRemAttachmentResponse { var Result:Boolean? = null }