/* Options: Date: 2026-03-14 18:40:47 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-sms-wa.azurewebsites.net/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckProcessingStatus.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Returns processing status of the specified entity , or NONE if no processing status is found */ @Route(Path="/status/checkproc", Verbs="GET") @Api(Description="Returns processing status of the specified entity , or NONE if no processing status is found") open class CheckProcessingStatus : IReturn { open var EntityId:UUID? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = CheckProcessingStatus.responseType }