/** * 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 UpdateUserResponse */ export interface UpdateUserResponse { /** * Unique id of the user in Kinde. * @type {string} * @memberof UpdateUserResponse */ id?: string; /** * User's first name. * @type {string} * @memberof UpdateUserResponse */ givenName?: string; /** * User's last name. * @type {string} * @memberof UpdateUserResponse */ familyName?: string; /** * User's preferred email. * @type {string} * @memberof UpdateUserResponse */ email?: string; /** * Whether the user is currently suspended or not. * @type {boolean} * @memberof UpdateUserResponse */ isSuspended?: boolean; /** * Whether a password reset has been requested. * @type {boolean} * @memberof UpdateUserResponse */ isPasswordResetRequested?: boolean; /** * User's profile picture URL. * @type {string} * @memberof UpdateUserResponse */ picture?: string; } /** * Check if a given object implements the UpdateUserResponse interface. */ export declare function instanceOfUpdateUserResponse(value: object): boolean; export declare function UpdateUserResponseFromJSON(json: any): UpdateUserResponse; export declare function UpdateUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserResponse; export declare function UpdateUserResponseToJSON(value?: UpdateUserResponse | null): any;