/** * 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 { ResourceInstanceRoleVm } from './ResourceInstanceRoleVm.js'; /** * * @export * @interface UserInTenant */ export interface UserInTenant { /** * * @type {string} * @memberof UserInTenant */ tenant?: string; /** * * @type {Array} * @memberof UserInTenant */ roles?: Array; /** * * @type {string} * @memberof UserInTenant */ status?: string; /** * * @type {Array} * @memberof UserInTenant */ resourceInstanceRoles?: Array; } /** * Check if a given object implements the UserInTenant interface. */ export declare function instanceOfUserInTenant(value: object): value is UserInTenant; export declare function UserInTenantFromJSON(json: any): UserInTenant; export declare function UserInTenantFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserInTenant; export declare function UserInTenantToJSON(json: any): UserInTenant; export declare function UserInTenantToJSONTyped(value?: UserInTenant | null, ignoreDiscriminator?: boolean): any;