/* Options: Date: 2025-07-04 08:49:25 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetUsersAndGroupsForTransition.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Drawing; using IDB.API.DTO.Controls.QuickLookup; using IDB.API.DTO; using IDB.Workflow.API.Operations; using IDB.API.DTO.UserInformation; namespace IDB.API.DTO { public partial class UserOrGroup { public virtual int ID { get; set; } public virtual string Title { get; set; } public virtual bool IsChecked { get; set; } public virtual string Image { get; set; } } } namespace IDB.API.DTO.Controls.QuickLookup { public partial interface IBaseQuickLookupResponse { int NumberOfAllRecords { get; set; } List QuickAddOptions { get; set; } } public partial class QuickAddOption { public virtual string Name { get; set; } public virtual string EntityType { get; set; } } } namespace IDB.API.DTO.UserInformation { public partial class UsersOrGroupsResponse : IBaseQuickLookupResponse { public UsersOrGroupsResponse() { UsersOrGroups = new List{}; QuickAddOptions = new List{}; } public virtual int NumberOfAllRecords { get; set; } public virtual List UsersOrGroups { get; set; } public virtual List QuickAddOptions { get; set; } } } namespace IDB.Workflow.API.Operations { /// ///Get available users and groups to assign to a transition. /// [Route("/workflowtransitions/{TransitionID}/getusersandgroups", "GET")] [Api(Description="Get available users and groups to assign to a transition.")] public partial class GetUsersAndGroupsForTransition : IReturn { public GetUsersAndGroupsForTransition() { SelectedUserIDs = new List{}; SelectedGroupIDs = new List{}; } /// ///ID of the transition /// [ApiMember(Description="ID of the transition", IsRequired=true)] public virtual Guid TransitionID { get; set; } public virtual int PageSize { get; set; } public virtual int PageNumber { get; set; } public virtual string SearchCriteria { get; set; } public virtual List SelectedUserIDs { get; set; } public virtual List SelectedGroupIDs { get; set; } } }