/* Options:
Date: 2026-04-04 06:54:25
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
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: 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
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Eros.Subtle.Canvara.WebAPIModel.Models;
using Eros.Subtle.Canvara.WebAPIModel.ServiceModel;
namespace Eros.Subtle.Canvara.WebAPIModel.Models
{
public partial class SessionModel
{
///
///Create user session for the specified user name
///
[ApiMember(Description="Create user session for the specified user name", IsRequired=true, Name="UserName")]
public virtual string UserName { get; set; }
///
///Local or External account
///
[ApiMember(Description="Local or External account", IsRequired=true, Name="AuthProvider")]
public virtual string AuthProvider { get; set; }
///
///Current user profile context
///
[ApiMember(Description="Current user profile context", IsRequired=true, Name="UserProfileId")]
public virtual Guid UserProfileId { get; set; }
///
///Current appliance context
///
[ApiMember(Description="Current appliance context", IsRequired=true, Name="Appliance")]
public virtual Guid ApplianceId { get; set; }
///
///Current role context
///
[ApiMember(Description="Current role context", IsRequired=true, Name="RoleId")]
public virtual Guid RoleId { get; set; }
///
///Current licensee context
///
[ApiMember(Description="Current licensee context", IsRequired=true, Name="LicenseeConnectionId")]
public virtual Guid LicenseeConnectionId { get; set; }
///
///Has 'Remember Me' option been selected?
///
[ApiMember(Description="Has 'Remember Me' option been selected?", Name="IsPersistent")]
public virtual bool IsPersistent { get; set; }
///
///Licensee contact id of the current licensee context
///
[ApiMember(Description="Licensee contact id of the current licensee context", IsRequired=true, Name="LicenseeContactId")]
public virtual Guid LicenseeContactId { get; set; }
///
///Connection Id linking the current user profile to the current licensee context
///
[ApiMember(Description="Connection Id linking the current user profile to the current licensee context", IsRequired=true, Name="UserContactRoleConnectionId")]
public virtual Guid UserContactRoleConnectionId { get; set; }
}
public partial class SettingModel
{
public virtual Guid SettingId { get; set; }
public virtual string SettingName { get; set; }
public virtual string SettingValue { get; set; }
}
}
namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
{
///
///Update quadrant context - create a new session, retrieve settings and return new JWT Token
///
[Route("/quadrantupdate/token")]
[Route("/quadrantupdate")]
[Api(Description="Update quadrant context - create a new session, retrieve settings and return new JWT Token")]
public partial class UpdateQuadrant
: IReturn
{
public virtual SessionModel Session { get; set; }
}
public partial class UpdateQuadrantResponse
{
public virtual Guid PerspectiveSessionId { get; set; }
public virtual List Settings { get; set; }
public virtual List Permissions { get; set; }
public virtual ResponseStatus ResponseStatus { get; set; }
}
}
namespace ServiceStack
{
[DataContract]
public partial class ResponseStatus
: IMeta
{
[DataMember(Order=1)]
public virtual string ErrorCode { get; set; }
[DataMember(Order=2)]
public virtual string Message { get; set; }
[DataMember(Order=3)]
public virtual string StackTrace { get; set; }
[DataMember(Order=4)]
public virtual List Errors { get; set; }
[DataMember(Order=5)]
public virtual Dictionary Meta { get; set; }
}
}