/** * 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. */ /** * The result of the user creation operation. * @export * @interface UserIdentityResult */ export interface UserIdentityResult { /** * True if the user identity was successfully created. * @type {boolean} * @memberof UserIdentityResult */ created?: boolean; } /** * Check if a given object implements the UserIdentityResult interface. */ export declare function instanceOfUserIdentityResult(value: object): boolean; export declare function UserIdentityResultFromJSON(json: any): UserIdentityResult; export declare function UserIdentityResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserIdentityResult; export declare function UserIdentityResultToJSON(value?: UserIdentityResult | null): any;