/* Options: Date: 2024-10-18 04:28:15 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: GetUsersAndGroupsForTransition.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Get available users and groups to assign to a transition. */ @Route(Path="/workflowtransitions/{TransitionID}/getusersandgroups", Verbs="GET") @Api(Description="Get available users and groups to assign to a transition.") open class GetUsersAndGroupsForTransition : IReturn { /** * ID of the transition */ @ApiMember(Description="ID of the transition", IsRequired=true) var TransitionID:UUID? = null var PageSize:Int? = null var PageNumber:Int? = null var SearchCriteria:String? = null var SelectedUserIDs:ArrayList = ArrayList() var SelectedGroupIDs:ArrayList = ArrayList() companion object { private val responseType = UsersOrGroupsResponse::class.java } override fun getResponseType(): Any? = GetUsersAndGroupsForTransition.responseType } open class UsersOrGroupsResponse : IBaseQuickLookupResponse { var NumberOfAllRecords:Int? = null var UsersOrGroups:ArrayList = ArrayList() var QuickAddOptions:ArrayList = ArrayList() } open class QuickAddOption { var Name:String? = null var EntityType:String? = null } open interface IBaseQuickLookupResponse { var NumberOfAllRecords:Int? var QuickAddOptions:ArrayList? } open class UserOrGroup { var ID:Int? = null var Title:String? = null var IsChecked:Boolean? = null var Image:String? = null }