/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 { UserInTenant } from './UserInTenant.js'; import type { UserRole } from './UserRole.js'; /** * * @export * @interface UserRead */ export interface UserRead { /** * * @type {string} * @memberof UserRead */ id?: string; /** * * @type {string} * @memberof UserRead */ key?: string; /** * * @type {string} * @memberof UserRead */ email?: string; /** * * @type {string} * @memberof UserRead */ firstName?: string; /** * * @type {string} * @memberof UserRead */ lastName?: string; /** * * @type {{ [key: string]: any; }} * @memberof UserRead */ attributes?: { [key: string]: any; }; /** * * @type {string} * @memberof UserRead */ organizationId?: string; /** * * @type {string} * @memberof UserRead */ projectId?: string; /** * * @type {string} * @memberof UserRead */ environmentId?: string; /** * * @type {Array} * @memberof UserRead */ associatedTenants?: Array; /** * * @type {Array} * @memberof UserRead */ roles?: Array; } /** * Check if a given object implements the UserRead interface. */ export declare function instanceOfUserRead(value: object): value is UserRead; export declare function UserReadFromJSON(json: any): UserRead; export declare function UserReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserRead; export declare function UserReadToJSON(json: any): UserRead; export declare function UserReadToJSONTyped(value?: UserRead | null, ignoreDiscriminator?: boolean): any;