src/app/models/User.ts
Properties |
|
| cardNumber |
cardNumber:
|
Type : string
|
| Optional |
| displayName |
displayName:
|
Type : string
|
email:
|
Type : string
|
| emailVerified |
emailVerified:
|
Type : boolean
|
| libraryID |
libraryID:
|
Type : string
|
| phoneNumber |
phoneNumber:
|
Type : string
|
| topics |
topics:
|
Type : Array<string>
|
| Optional |
| uid |
uid:
|
Type : string
|
export interface User {
displayName: string;
email: string;
emailVerified: boolean;
libraryID: string;
phoneNumber: string;
uid: string;
topics?: Array<string>;
cardNumber?: string;
}