/* Options: Date: 2026-09-01 08:02:35 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: QueueSweepRequest.* //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/queue/sweep", Verbs="POST") open class QueueSweepRequest : IReturn { companion object { private val responseType = QueueSweepResponse::class.java } override fun getResponseType(): Any? = QueueSweepRequest.responseType } open class QueueSweepResponse { open var ResponseStatus:ResponseStatus? = null open var Locations:ArrayList = ArrayList() open var TotalNoShow:Int? = null open var TotalUnfulfilled:Int? = null } open class LocationSweepResult { open var LocationId:UUID? = null open var LocationName:String? = null open var NoShow:Int? = null open var Unfulfilled:Int? = null }