' Options:
'Date: 2026-04-04 08:37:46
'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: UpdateQuadrant.*
'''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.Subtle.Canvara.WebAPIModel.Models
Imports Eros.Subtle.Canvara.WebAPIModel.ServiceModel
Namespace Global
Namespace Eros.Subtle.Canvara.WebAPIModel.Models
Public Partial Class SessionModel
'''
'''Create user session for the specified user name
'''
Public Overridable Property UserName As String
'''
'''Local or External account
'''
Public Overridable Property AuthProvider As String
'''
'''Current user profile context
'''
Public Overridable Property UserProfileId As Guid
'''
'''Current appliance context
'''
Public Overridable Property ApplianceId As Guid
'''
'''Current role context
'''
Public Overridable Property RoleId As Guid
'''
'''Current licensee context
'''
Public Overridable Property LicenseeConnectionId As Guid
'''
'''Has 'Remember Me' option been selected?
'''
Public Overridable Property IsPersistent As Boolean
'''
'''Licensee contact id of the current licensee context
'''
Public Overridable Property LicenseeContactId As Guid
'''
'''Connection Id linking the current user profile to the current licensee context
'''
Public Overridable Property UserContactRoleConnectionId As Guid
End Class
Public Partial Class SettingModel
Public Overridable Property SettingId As Guid
Public Overridable Property SettingName As String
Public Overridable Property SettingValue As String
End Class
End Namespace
Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
'''
'''Update quadrant context - create a new session, retrieve settings and return new JWT Token
'''
Public Partial Class UpdateQuadrant
Implements IReturn(Of UpdateQuadrantResponse)
Public Overridable Property Session As SessionModel
End Class
Public Partial Class UpdateQuadrantResponse
Public Overridable Property PerspectiveSessionId As Guid
Public Overridable Property Settings As List(Of SettingModel)
Public Overridable Property Permissions As List(Of Guid)
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