/* Options: Date: 2026-03-14 18:41:15 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: CheckCommStatus.* //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 status of the specified communication entity , or NONE if no communication status is found */ @Route(Path="/status/checkcomm", Verbs="GET") @Api(Description="Returns status of the specified communication entity , or NONE if no communication status is found") open class CheckCommStatus : IReturn { open var EntityId:UUID? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = CheckCommStatus.responseType }