/** * 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 OrganizationUser */ export interface OrganizationUser { /** * * @type {string} * @memberof OrganizationUser */ id?: string; /** * * @type {string} * @memberof OrganizationUser */ email?: string; /** * * @type {string} * @memberof OrganizationUser */ fullName?: string; /** * * @type {string} * @memberof OrganizationUser */ lastName?: string; /** * * @type {string} * @memberof OrganizationUser */ firstName?: string; /** * * @type {Array} * @memberof OrganizationUser */ roles?: Array; } /** * Check if a given object implements the OrganizationUser interface. */ export declare function instanceOfOrganizationUser(value: object): boolean; export declare function OrganizationUserFromJSON(json: any): OrganizationUser; export declare function OrganizationUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationUser; export declare function OrganizationUserToJSON(value?: OrganizationUser | null): any;