projects/prestations-ng/src/sdk-session-info/session-info-data.ts
Properties |
| birthDate |
Type : string
|
| birthDateAsLocalDate |
Type : number[]
|
| businessId |
Type : string
|
| categories |
Type : string[]
|
| context |
Type : string
|
| espaceId |
Type : string
|
| espaceLabel |
Type : string
|
| firstName |
Type : string
|
| fullFirstNames |
Type : string
|
| gender |
Type : string
|
| iup |
Type : string
|
| lastLogin |
Type : number[]
|
| lastName |
Type : string
|
| Optional nogaCode |
Type : string
|
| Optional ofs |
Type : number
|
| preferences |
Type : Preferences
|
| prestationsRoles |
Type : string[]
|
| sessionTimeout |
Type : number
|
| type |
Type : string
|
import { Address } from '../foehn-address/address.type';
// eslint-disable max-classes-per-file
export class SessionInfoData {
lastLogin: number[];
context: string;
iup: string;
gender: string;
firstName: string;
fullFirstNames: string;
lastName: string;
birthDate: string;
birthDateAsLocalDate: number[];
espaceId: string;
espaceLabel: string;
businessId: string;
categories: string[];
type: string;
prestationsRoles: string[];
preferences: Preferences;
sessionTimeout: number;
ofs?: number;
nogaCode?: string;
}
export class Preferences {
email: string;
phone: string;
adresseCourrier: Address;
adresseFacturation: Address;
adresseLivraison: Address;
}