/* Options: Date: 2026-06-01 15:36:39 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: SignDocumentEYPV2.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/SignDocumentEYPV2/") open class SignDocumentEYPV2 : IReturn { var eypImzaType:EYPImzaType? = null var ClientKey:String? = null var AuthorizationID:String? = null var UserSSN:String? = null var AgentMessage:String? = null var DocumentId:Long? = null var stampYn:Boolean? = null var StampSSN:String? = null companion object { private val responseType = SignDocumentEYPResponse::class.java } override fun getResponseType(): Any? = SignDocumentEYPV2.responseType } open class SignDocumentEYPResponse : BaseResponse() { var Result:Boolean? = null } enum class EYPImzaType(val value:Int) { ParafOzetiImza(1), PaketOzetiImza(2), NihaiOzetMuhur(3), } open class BaseResponse { var ServiceSuccessResult:Boolean? = null var ErrorMesage:String? = null }