File

src/app/models/user.ts

Properties

_id
_id: string
Type : string
admin
admin: boolean
Type : boolean
authentication
authentication: { email: { email: string; email_confirmed: boolean; }; }
Type : { email: { email: string; email_confirmed: boolean; }; }
codefamille
codefamille: any
Type : any
enseignant
enseignant: boolean
Type : boolean
famille
famille: boolean
Type : boolean
maxuser_number
maxuser_number: number
Type : number
opensteammathiaauthbearer_text
opensteammathiaauthbearer_text: string
Type : string
oseauthbearer_text
oseauthbearer_text: string
Type : string
premium
premium: boolean
Type : boolean
premium_ose
premium_ose: boolean
Type : boolean
subscriptionid_number
subscriptionid_number: number
Type : number
tokenApple
tokenApple: string
Type : string
tralalereauthbearer_text
tralalereauthbearer_text: string
Type : string
user_signed_up
user_signed_up: boolean
Type : boolean
import { UserCredential } from "./user-credential";
import { Story, StoryStatistics } from "./story";
import { Chapter } from "./chapter";
import { Badges } from "./badges";
import { Videos } from "./videos";

export class User {
	firstName: string;
	lastName: string;
	address: string;
	city: string;
	tel: string;
	auth: UserCredential;
	journeyState;
	codeClasse: any;
	grade: string;
	email: string;
	storys: Story[];
	currentStory: Story;
	currentChapter: Chapter;
	badges: Badges;
	studentId: string;
	storyStatistics: StoryStatistics;
	videos: Videos;
	premium: boolean;
	premium_ose: boolean;
	loggedFromWp:boolean;
	codeMaison: string;
	CODE_MAISON_CUSTOM:string = "97d9-d0a1-f81a";
	family: boolean;
	teacher: boolean;
	admin: boolean;
	fremiumJourneyId: number[];
	canUnlockJourney= false;
	dayBeforeNextUnlock:string;
	isC3: boolean;
}
export interface KidaiaSso {
	codefamille: any;
	authentication: {
		email: {
			email: string;
			email_confirmed: boolean;
		};
	};
	user_signed_up: boolean;
	subscriptionid_number: number;
	tralalereauthbearer_text: string;
	opensteammathiaauthbearer_text:string;
	oseauthbearer_text:string,
	maxuser_number: number;
	premium: boolean;
	premium_ose: boolean;
	admin ?: boolean;
	famille ?: boolean;
	enseignant ?: boolean;
	tokenApple ?:string
	_id: string;
}

results matching ""

    No results matching ""