projects/prestations-ng/src/sdk-session-info/session-info-data.ts
Properties |
adresseCourrier |
Type : Address
|
adresseFacturation |
Type : Address
|
adresseLivraison |
Type : Address
|
Type : string
|
phone |
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;
}