| 7 | } |
| 8 | |
| 9 | export interface User { |
| 10 | /** |
| 11 | * The unique identifier for the user. |
| 12 | */ |
| 13 | id: string; |
| 14 | |
| 15 | /** |
| 16 | * The email address associated with the user. |
| 17 | */ |
| 18 | email: string; |
| 19 | |
| 20 | /** |
| 21 | * The user's full name. |
| 22 | */ |
| 23 | name: string; |
| 24 | |
| 25 | /** |
| 26 | * The family name (last name) of the user. |
| 27 | */ |
| 28 | familyName: string; |
| 29 | |
| 30 | /** |
| 31 | * The given name (first name) of the user. |
| 32 | */ |
| 33 | givenName: string; |
| 34 | |
| 35 | /** |
| 36 | * The URL of the user's profile picture. |
| 37 | */ |
| 38 | imageUrl: string; |
| 39 | |
| 40 | /** |
| 41 | * The server authentication code. |
| 42 | */ |
| 43 | serverAuthCode: string; |
| 44 | |
| 45 | /** |
| 46 | * The authentication details including access, refresh and ID tokens. |
| 47 | */ |
| 48 | authentication: Authentication; |
| 49 | } |
| 50 | |
| 51 | export interface Authentication { |
| 52 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected