/* Options: Date: 2025-12-06 07:53:10 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: CustomersInLine.* //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/CustomersInLine", Verbs="GET") // @Route(Path="/v1/CustomersInLine/{LocationId}", Verbs="GET") open class CustomersInLine : IReturn { open var ApiKey:UUID? = null open var LocationId:UUID? = null open var clientIsLoading:Boolean? = null companion object { private val responseType = CustomersInLineResponse::class.java } override fun getResponseType(): Any? = CustomersInLine.responseType } open class CustomersInLineResponse { open var ResponseStatus:ResponseStatus? = null open var Customers:ArrayList = ArrayList() } open class CustomerInLineObject { open var Id:UUID? = null open var Name:String? = null open var FullName:String? = null open var SignInTime:Date? = null open var AdjustedSignInTime:Date? = null open var Status:Int? = null open var TaskTime:Int? = null open var Completed:Boolean? = null open var SendReminders:Boolean? = null open var CompletedTime:Date? = null open var EmployeeId:UUID? = null open var Employee:String? = null open var Line:String? = null open var Description:String? = null open var ServiceId:UUID? = null open var StationId:UUID? = null open var StationName:String? = null }