/* Options: Date: 2026-08-10 19:13:45 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReceptionistMessageRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/receptionist/tool/message", Verbs="POST,OPTIONS") open class ReceptionistMessageRequest : IReturn { open var Slug:String? = null open var CallerName:String? = null open var CallerPhone:String? = null open var Reason:String? = null companion object { private val responseType = ReceptionistMessageResponse::class.java } override fun getResponseType(): Any? = ReceptionistMessageRequest.responseType } open class ReceptionistMessageResponse { open var TaskId:UUID? = null open var ResponseStatus:ResponseStatus? = null }