' Options:
'Date: 2026-04-04 01:05:36
'Version: 8.52
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://pfapi.pstpf.com.au/api
'
'''GlobalNamespace:
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion:
'''InitializeCollections: False
'''ExportValueTypes: False
'IncludeTypes: GetContactRoleGroups.*
'''ExcludeTypes:
'''AddNamespaces:
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Eros.Saguna.Common.WebAPIModel.Models
Imports Eros.Subtle.Canvara.WebAPIModel.ServiceModel
Namespace Global
Namespace Eros.Saguna.Common.WebAPIModel.Models
Public Partial Class PagedModel
'''
'''Page Number to retrieve
'''
Public Overridable Property PageNumber As Integer
'''
'''Number of records to retrieve
'''
Public Overridable Property PageSize As Integer
'''
'''Index of field to sort results by
'''
Public Overridable Property SortIndex As Integer
'''
'''Sort Order - Ascending or Descending
'''
Public Overridable Property SortOrder As SortOrder
End Class
Public Partial Class RoleGroupModel
'''
'''Role Group Id
'''
Public Overridable Property RoleGroupId As Guid
'''
'''Role Group Name
'''
Public Overridable Property Name As String
'''
'''Owner Contact Id
'''
Public Overridable Property OwnerContactId As Guid
'''
'''Number of Roles
'''
Public Overridable Property NumberOfRoles As Integer
'''
'''Roles belonging to the Role Group
'''
Public Overridable Property Roles As List(Of RoleGroupRolesModel)
'''
''''A' (Active), 'I' (Inactive)
'''
Public Overridable Property RecordStatus As String
'''
'''True if Licensee-owned, allowing editing, deleting, archiving
'''
Public Overridable Property AllowEdit As Boolean
End Class
Public Partial Class RoleGroupRolesModel
'''
'''Role Id
'''
Public Overridable Property RoleId As Guid
'''
'''Role Name
'''
Public Overridable Property RoleName As String
'''
'''Role Group Id
'''
Public Overridable Property RoleGroupId As Guid
'''
'''Role Group Name
'''
Public Overridable Property RoleGroupName As String
'''
'''Role Group Role Id
'''
Public Overridable Property RoleGroupRoleId As Guid
'''
''''A' (Active), 'I' (Inactive)
'''
Public Overridable Property RecordStatus As String
'''
'''Owner Contact Id
'''
Public Overridable Property OwnerContactId As Guid
End Class
Public Enum SortOrder
Ascending
Descending
End Enum
End Namespace
Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
'''
'''Get role groups for the given criteria
'''
Public Partial Class GetContactRoleGroups
Inherits PagedModel
Implements IReturn(Of GetContactRoleGroupsResponse)
'''
'''Get contact role groups for the specified licensee
'''
Public Overridable Property LicenseeId As Guid
'''
'''Role Group Name
'''
Public Overridable Property Name As String
'''
'''Active/Archived filter
'''
Public Overridable Property RecordStatus As String
End Class
Public Partial Class GetContactRoleGroupsResponse
Public Overridable Property RoleGroups As List(Of RoleGroupModel)
Public Overridable Property TotalRoleGroups As Integer
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
Namespace ServiceStack
Public Partial Class ResponseStatus
Implements IMeta
Public Overridable Property ErrorCode As String
Public Overridable Property Message As String
Public Overridable Property StackTrace As String
Public Overridable Property Errors As List(Of ResponseError)
Public Overridable Property Meta As Dictionary(Of String, String) Implements IMeta.Meta
End Class
End Namespace
End Namespace