/** * 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 { UserIdentityResult } from './UserIdentityResult.js'; /** * * @export * @interface UserIdentity */ export interface UserIdentity { /** * The type of identity object created. * @type {string} * @memberof UserIdentity */ type?: string; /** * * @type {UserIdentityResult} * @memberof UserIdentity */ result?: UserIdentityResult; } /** * Check if a given object implements the UserIdentity interface. */ export declare function instanceOfUserIdentity(value: object): boolean; export declare function UserIdentityFromJSON(json: any): UserIdentity; export declare function UserIdentityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserIdentity; export declare function UserIdentityToJSON(value?: UserIdentity | null): any;