/** * 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 RelationshipTupleRead */ export interface RelationshipTupleRead { /** * * @type {string} * @memberof RelationshipTupleRead */ id?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ subject?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ relation?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ object?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ tenant?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ subjectId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ relationId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ objectId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ tenantId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ organizationId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ projectId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ environmentId?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ createdAt?: string; /** * * @type {string} * @memberof RelationshipTupleRead */ updatedAt?: string; } /** * Check if a given object implements the RelationshipTupleRead interface. */ export declare function instanceOfRelationshipTupleRead(value: object): value is RelationshipTupleRead; export declare function RelationshipTupleReadFromJSON(json: any): RelationshipTupleRead; export declare function RelationshipTupleReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationshipTupleRead; export declare function RelationshipTupleReadToJSON(json: any): RelationshipTupleRead; export declare function RelationshipTupleReadToJSONTyped(value?: RelationshipTupleRead | null, ignoreDiscriminator?: boolean): any;