/* Options: Date: 2026-08-10 21:16:27 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: ReceptionistCallLogRequest.* //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/call-log", Verbs="POST,OPTIONS") open class ReceptionistCallLogRequest : IReturn { open var Slug:String? = null open var Outcome:String? = null open var CallerName:String? = null open var CallerPhone:String? = null open var DurationSec:Int? = null open var Transcript:String? = null open var RecordingUrl:String? = null open var BookedCalendarEventId:Int? = null open var TaskId:UUID? = null companion object { private val responseType = ReceptionistCallLogResponse::class.java } override fun getResponseType(): Any? = ReceptionistCallLogRequest.responseType } open class ReceptionistCallLogResponse { open var CallSessionId:Int? = null open var ResponseStatus:ResponseStatus? = null }