(* Options: Date: 2026-04-04 06:49:09 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetContactRoleGroups.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type SortOrder = | Ascending = 0 | Descending = 1 [] type PagedModel() = /// ///Page Number to retrieve /// [] member val PageNumber:Int32 = new Int32() with get,set /// ///Number of records to retrieve /// [] member val PageSize:Int32 = new Int32() with get,set /// ///Index of field to sort results by /// [] member val SortIndex:Int32 = new Int32() with get,set /// ///Sort Order - Ascending or Descending /// [] member val SortOrder:SortOrder = new SortOrder() with get,set [] type RoleGroupRolesModel() = /// ///Role Id /// [] member val RoleId:Guid = new Guid() with get,set /// ///Role Name /// [] member val RoleName:String = null with get,set /// ///Role Group Id /// [] member val RoleGroupId:Guid = new Guid() with get,set /// ///Role Group Name /// [] member val RoleGroupName:String = null with get,set /// ///Role Group Role Id /// [] member val RoleGroupRoleId:Guid = new Guid() with get,set /// ///'A' (Active), 'I' (Inactive) /// [] member val RecordStatus:String = null with get,set /// ///Owner Contact Id /// [] member val OwnerContactId:Guid = new Guid() with get,set [] type RoleGroupModel() = /// ///Role Group Id /// [] member val RoleGroupId:Guid = new Guid() with get,set /// ///Role Group Name /// [] member val Name:String = null with get,set /// ///Owner Contact Id /// [] member val OwnerContactId:Guid = new Guid() with get,set /// ///Number of Roles /// [] member val NumberOfRoles:Int32 = new Int32() with get,set /// ///Roles belonging to the Role Group /// [] member val Roles:ResizeArray = null with get,set /// ///'A' (Active), 'I' (Inactive) /// [] member val RecordStatus:String = null with get,set /// ///True if Licensee-owned, allowing editing, deleting, archiving /// [] member val AllowEdit:Boolean = new Boolean() with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetContactRoleGroupsResponse() = member val RoleGroups:ResizeArray = null with get,set member val TotalRoleGroups:Int32 = new Int32() with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get role groups for the given criteria /// [] [] [] type GetContactRoleGroups() = inherit PagedModel() interface IReturn /// ///Get contact role groups for the specified licensee /// [] member val LicenseeId:Guid = new Guid() with get,set /// ///Role Group Name /// [] member val Name:String = null with get,set /// ///Active/Archived filter /// [] member val RecordStatus:String = null with get,set