Type alias DefaultUserProfileData

DefaultUserProfileData: {
    birthday?: string;
    email?: string;
    firstName?: string;
    gender?: string;
    lastName?: string;
    maxAge?: string;
    minAge?: string;
    name?: string;
    pictureUrl?: string;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optional birthday?: string

    The users birthday.

  • Optional email?: string

    The users email address.

  • Optional firstName?: string

    The users first name.

  • Optional gender?: string

    The users gender.

  • Optional lastName?: string

    The users last name.

  • Optional maxAge?: string

    The maximal age of the user.

  • Optional minAge?: string

    The minimal age of the user.

  • Optional name?: string

    The commonly displayed name of the user.

  • Optional pictureUrl?: string

    A URL referencing a picture associated with the user.

Type declaration

  • [key: string]: unknown

    Authentication providers might store additional data here.

Generated using TypeDoc