/** * 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 UpdateUserRequest */ export interface UpdateUserRequest { /** * User's first name. * @type {string} * @memberof UpdateUserRequest */ givenName?: string; /** * User's last name. * @type {string} * @memberof UpdateUserRequest */ familyName?: string; /** * Whether the user is currently suspended or not. * @type {boolean} * @memberof UpdateUserRequest */ isSuspended?: boolean; /** * Prompt the user to change their password on next sign in. * @type {boolean} * @memberof UpdateUserRequest */ isPasswordResetRequested?: boolean; } /** * Check if a given object implements the UpdateUserRequest interface. */ export declare function instanceOfUpdateUserRequest(value: object): boolean; export declare function UpdateUserRequestFromJSON(json: any): UpdateUserRequest; export declare function UpdateUserRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserRequest; export declare function UpdateUserRequestToJSON(value?: UpdateUserRequest | null): any;