(* Options: Date: 2026-04-04 04:52:01 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: UpdateQuadrant.* //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 SessionModel() = /// ///Create user session for the specified user name /// [] member val UserName:String = null with get,set /// ///Local or External account /// [] member val AuthProvider:String = null with get,set /// ///Current user profile context /// [] member val UserProfileId:Guid = new Guid() with get,set /// ///Current appliance context /// [] member val ApplianceId:Guid = new Guid() with get,set /// ///Current role context /// [] member val RoleId:Guid = new Guid() with get,set /// ///Current licensee context /// [] member val LicenseeConnectionId:Guid = new Guid() with get,set /// ///Has 'Remember Me' option been selected? /// [] member val IsPersistent:Boolean = new Boolean() with get,set /// ///Licensee contact id of the current licensee context /// [] member val LicenseeContactId:Guid = new Guid() with get,set /// ///Connection Id linking the current user profile to the current licensee context /// [] member val UserContactRoleConnectionId:Guid = new Guid() with get,set [] type SettingModel() = member val SettingId:Guid = new Guid() with get,set member val SettingName:String = null with get,set member val SettingValue:String = null 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 UpdateQuadrantResponse() = member val PerspectiveSessionId:Guid = new Guid() with get,set member val Settings:ResizeArray = null with get,set member val Permissions:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Update quadrant context - create a new session, retrieve settings and return new JWT Token /// [] [] [] [] type UpdateQuadrant() = interface IReturn member val Session:SessionModel = null with get,set