/* Options: Date: 2025-07-04 08:14:25 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetWorkflowTaskActionUsersAndGroups.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class GetWorkflowTaskActionUsersAndGroups implements IReturn> { public Integer PageSize = null; public Integer PageNumber = null; public String SearchCriteria = null; public ArrayList SelectedUserIDs = null; public ArrayList SelectedGroupIDs = null; public Integer getPageSize() { return PageSize; } public GetWorkflowTaskActionUsersAndGroups setPageSize(Integer value) { this.PageSize = value; return this; } public Integer getPageNumber() { return PageNumber; } public GetWorkflowTaskActionUsersAndGroups setPageNumber(Integer value) { this.PageNumber = value; return this; } public String getSearchCriteria() { return SearchCriteria; } public GetWorkflowTaskActionUsersAndGroups setSearchCriteria(String value) { this.SearchCriteria = value; return this; } public ArrayList getSelectedUserIDs() { return SelectedUserIDs; } public GetWorkflowTaskActionUsersAndGroups setSelectedUserIDs(ArrayList value) { this.SelectedUserIDs = value; return this; } public ArrayList getSelectedGroupIDs() { return SelectedGroupIDs; } public GetWorkflowTaskActionUsersAndGroups setSelectedGroupIDs(ArrayList value) { this.SelectedGroupIDs = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }