/* Options: Date: 2026-06-01 15:36:06 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SignDocumentProxy.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/SignDocumentProxy/") open class SignDocumentProxy : IReturn { var ClientKey:String? = null var AuthorizationID:String? = null var UserSSN:String? = null var DocumentId:Long? = null companion object { private val responseType = SignDocumentProxyResponse::class.java } override fun getResponseType(): Any? = SignDocumentProxy.responseType } open class SignDocumentProxyResponse : BaseResponse() { } open class BaseResponse { var ServiceSuccessResult:Boolean? = null var ErrorMesage:String? = null }