/** * 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. */ /** * * @export * @interface TenantRead */ export interface TenantRead { /** * * @type {string} * @memberof TenantRead */ id?: string; /** * * @type {string} * @memberof TenantRead */ key?: string; /** * * @type {string} * @memberof TenantRead */ name?: string; /** * * @type {string} * @memberof TenantRead */ description?: string; /** * * @type {{ [key: string]: any; }} * @memberof TenantRead */ attributes?: { [key: string]: any; }; /** * * @type {string} * @memberof TenantRead */ organizationId?: string; /** * * @type {string} * @memberof TenantRead */ projectId?: string; /** * * @type {string} * @memberof TenantRead */ environmentId?: string; /** * * @type {string} * @memberof TenantRead */ createdAt?: string; /** * * @type {string} * @memberof TenantRead */ updatedAt?: string; } /** * Check if a given object implements the TenantRead interface. */ export declare function instanceOfTenantRead(value: object): value is TenantRead; export declare function TenantReadFromJSON(json: any): TenantRead; export declare function TenantReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRead; export declare function TenantReadToJSON(json: any): TenantRead; export declare function TenantReadToJSONTyped(value?: TenantRead | null, ignoreDiscriminator?: boolean): any;