/* Options: Date: 2026-03-31 18:50:53 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SetRegistrationprofileGroupState.* //ExcludeTypes: //InitializeCollections: False //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="/registrationprofilegroup/{ID}/state", Verbs="PUT") open class SetRegistrationprofileGroupState : IReturnVoid { open var ID:UUID? = null open var State:RegistrationprofileGroupState? = null } open class RegistrationprofileGroupState { open var Collapsed:Boolean? = null }