/* Options: Date: 2026-09-05 08:47:30 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: DispatchPublicRequestCreate.* //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/dispatch/public/request/{SchedulerUrl}", Verbs="POST,OPTIONS") open class DispatchPublicRequestCreate : IReturn { open var SchedulerUrl:String? = null open var CustomerName:String? = null open var CustomerPhone:String? = null open var CustomerEmail:String? = null open var Cargo:String? = null open var Units:Int? = null open var FromLoc:String? = null open var ToLoc:String? = null open var WindowText:String? = null open var IsUrgent:Boolean? = null open var Notes:String? = null open var TurnstileToken:String? = null companion object { private val responseType = DispatchPublicRequestResponse::class.java } override fun getResponseType(): Any? = DispatchPublicRequestCreate.responseType } open class DispatchPublicRequestResponse { open var Code:String? = null open var ResponseStatus:ResponseStatus? = null }