/* Options: Date: 2025-07-04 10:16:32 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: UpdateGroup.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/groups/{ID}/update", Verbs="PATCH") open class UpdateGroup : IReturn { var ID:UUID? = null var Group:TileGroupDto? = null companion object { private val responseType = TileGroupDto::class.java } override fun getResponseType(): Any? = UpdateGroup.responseType } 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 }