/* Options: Date: 2026-04-04 03:04:41 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateQuadrant.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class SessionModel { /** @description Create user session for the specified user name */ // @ApiMember(Description="Create user session for the specified user name", IsRequired=true, Name="UserName") public UserName: string; /** @description Local or External account */ // @ApiMember(Description="Local or External account", IsRequired=true, Name="AuthProvider") public AuthProvider: string; /** @description Current user profile context */ // @ApiMember(Description="Current user profile context", IsRequired=true, Name="UserProfileId") public UserProfileId: string; /** @description Current appliance context */ // @ApiMember(Description="Current appliance context", IsRequired=true, Name="Appliance") public ApplianceId: string; /** @description Current role context */ // @ApiMember(Description="Current role context", IsRequired=true, Name="RoleId") public RoleId: string; /** @description Current licensee context */ // @ApiMember(Description="Current licensee context", IsRequired=true, Name="LicenseeConnectionId") public LicenseeConnectionId: string; /** @description Has 'Remember Me' option been selected? */ // @ApiMember(Description="Has 'Remember Me' option been selected?", Name="IsPersistent") public IsPersistent: boolean; /** @description Licensee contact id of the current licensee context */ // @ApiMember(Description="Licensee contact id of the current licensee context", IsRequired=true, Name="LicenseeContactId") public LicenseeContactId: string; /** @description 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 UserContactRoleConnectionId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SettingModel { public SettingId: string; public SettingName: string; public SettingValue: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UpdateQuadrantResponse { public PerspectiveSessionId: string; public Settings: SettingModel[]; public Permissions: string[]; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description 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") export class UpdateQuadrant implements IReturn { public Session: SessionModel; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateQuadrant'; } public getMethod() { return 'PUT'; } public createResponse() { return new UpdateQuadrantResponse(); } }