/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UserProfile */ export interface UserProfile { /** * Unique id of the user in Kinde. * @type {string} * @memberof UserProfile */ id?: string; /** * Default email address of the user in Kinde. * @type {string} * @memberof UserProfile */ preferredEmail?: string; /** * Primary username of the user in Kinde. * @type {string} * @memberof UserProfile */ username?: string; /** * Value of the user's id in a third-party system when the user is imported into Kinde. * @type {string} * @memberof UserProfile */ providedId?: string | null; /** * User's last name. * @type {string} * @memberof UserProfile */ lastName?: string; /** * User's first name. * @type {string} * @memberof UserProfile */ firstName?: string; /** * URL that point's to the user's picture or avatar * @type {string} * @memberof UserProfile */ picture?: string; } /** * Check if a given object implements the UserProfile interface. */ export declare function instanceOfUserProfile(value: object): boolean; export declare function UserProfileFromJSON(json: any): UserProfile; export declare function UserProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfile; export declare function UserProfileToJSON(value?: UserProfile | null): any;