/* Options: Date: 2024-10-18 04:15:40 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.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/{ID}", Verbs="GET") open class GetDashboard : IReturn { var ID:UUID? = null 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() } open class TileDto { var ID:UUID? = null var GroupID:UUID? = null var Type:Int? = null var Name:String? = null var Order:Int? = null var Cols:Int? = null var Rows:Int? = null var Style:Int? = null var Data:String? = null var FontAwesomeIcon:String? = null var FontAwesomeStyle:String? = null }