/* Options: Date: 2026-07-08 22:39:48 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: KioskAppointmentCheckinRequest.* //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/kiosk/appointmentcheckin", Verbs="POST,OPTIONS") open class KioskAppointmentCheckinRequest : IReturn { open var ApiKey:UUID? = null open var LocationId:UUID? = null open var Query:String? = null companion object { private val responseType = KioskAppointmentCheckinResponse::class.java } override fun getResponseType(): Any? = KioskAppointmentCheckinRequest.responseType } open class KioskAppointmentCheckinResponse { open var ResponseStatus:ResponseStatus? = null open var Matched:Boolean? = null open var Name:String? = null open var AppointmentTime:Date? = null open var Position:Int? = null open var EstWaitMinutes:Int? = null open var Message:String? = null }