UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

53 lines 2.13 kB
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ export type UserInfoResponse = { /** End-User's preferred postal address */ address?: string; /** End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format */ birthdate?: string; /** End-User's preferred e-mail address */ email?: string; /** User at the time the verification was performed */ email_verified?: boolean; /** Surname(s) or last name(s) of the End-User */ family_name?: string; /** End-User's gender */ gender?: string; /** Given name(s) or first name(s) of the End-User */ given_name?: string; /** End-User's locale, represented as a BCP47 [RFC5646] language tag */ locale?: string; /** Middle name(s) of the End-User */ middle_name?: string; /** End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences */ name?: string; /** Casual name of the End-User that may or may not be the same as the given_name */ nickname?: string; /** End-User's preferred telephone number */ phone_number?: string; /** User at the time the verification was performed */ phone_number_verified?: boolean; /** URL of the End-User's profile picture */ picture?: string; /** Shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe */ preferred_username?: string; /** URL of the End-User's profile page */ profile?: string; /** Subject - Identifier for the End-User at the Issuer */ sub?: string; /** Time the End-User's information was last updated */ updated_at?: number; /** URL of the End-User's Web page or blog */ website?: string; /** String from zoneinfo [zoneinfo] time zone database representing the End-User's time zone */ zoneinfo?: string; }; //# sourceMappingURL=userInfoResponse.d.ts.map