/* Options: Date: 2025-09-13 23:59:23 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDashboard.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/dashboards", Verbs="GET") open class GetDashboard : IReturn { companion object { private val responseType = DashboardDto::class.java } override fun getResponseType(): Any? = GetDashboard.responseType } open class DashboardDto { var ID:UUID? = null var UserID:Int? = null var TileGroups:ArrayList = ArrayList() } open class TileGroupDto { var ID:UUID? = null var DashboardID:UUID? = null var Name:String? = null var Cols:Int? = null var Rows:Int? = null var Order:Int? = null var Tiles:ArrayList = ArrayList() }