/** * 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 { RelationshipTupleRead } from './RelationshipTupleRead.js'; /** * * @export * @interface ResourceInstanceRead */ export interface ResourceInstanceRead { /** * * @type {string} * @memberof ResourceInstanceRead */ key?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ tenant?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ resource?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ id?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ organizationId?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ projectId?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ environmentId?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ createdAt?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ updatedAt?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ resourceId?: string; /** * * @type {string} * @memberof ResourceInstanceRead */ tenantId?: string; /** * * @type {{ [key: string]: any; }} * @memberof ResourceInstanceRead */ attributes?: { [key: string]: any; }; /** * * @type {Array} * @memberof ResourceInstanceRead */ relationships?: Array; } /** * Check if a given object implements the ResourceInstanceRead interface. */ export declare function instanceOfResourceInstanceRead(value: object): value is ResourceInstanceRead; export declare function ResourceInstanceReadFromJSON(json: any): ResourceInstanceRead; export declare function ResourceInstanceReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceInstanceRead; export declare function ResourceInstanceReadToJSON(json: any): ResourceInstanceRead; export declare function ResourceInstanceReadToJSONTyped(value?: ResourceInstanceRead | null, ignoreDiscriminator?: boolean): any;