MCPcopy Create free account
hub / github.com/CodetrixStudio/CapacitorGoogleAuth / User

Interface User

src/definitions.ts:9–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9export 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
51export interface Authentication {
52 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected