/** * 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. */ import type { UserIdentity } from './UserIdentity.js'; /** * * @export * @interface CreateUserResponse */ export interface CreateUserResponse { /** * Unique id of the user in Kinde. * @type {string} * @memberof CreateUserResponse */ id?: string; /** * True if the user was successfully created. * @type {boolean} * @memberof CreateUserResponse */ created?: boolean; /** * * @type {Array} * @memberof CreateUserResponse */ identities?: Array; } /** * Check if a given object implements the CreateUserResponse interface. */ export declare function instanceOfCreateUserResponse(value: object): boolean; export declare function CreateUserResponseFromJSON(json: any): CreateUserResponse; export declare function CreateUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserResponse; export declare function CreateUserResponseToJSON(value?: CreateUserResponse | null): any;