/** * 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 RelationshipTupleQuery */ export interface RelationshipTupleQuery { /** * * @type {string} * @memberof RelationshipTupleQuery */ subject?: string; /** * * @type {string} * @memberof RelationshipTupleQuery */ relation?: string; /** * * @type {string} * @memberof RelationshipTupleQuery */ object?: string; /** * * @type {string} * @memberof RelationshipTupleQuery */ tenant?: string; /** * * @type {string} * @memberof RelationshipTupleQuery */ subjectId?: string; /** * * @type {string} * @memberof RelationshipTupleQuery */ objectId?: string; /** * * @type {string} * @memberof RelationshipTupleQuery */ tenantId?: string; } /** * Check if a given object implements the RelationshipTupleQuery interface. */ export declare function instanceOfRelationshipTupleQuery(value: object): value is RelationshipTupleQuery; export declare function RelationshipTupleQueryFromJSON(json: any): RelationshipTupleQuery; export declare function RelationshipTupleQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationshipTupleQuery; export declare function RelationshipTupleQueryToJSON(json: any): RelationshipTupleQuery; export declare function RelationshipTupleQueryToJSONTyped(value?: RelationshipTupleQuery | null, ignoreDiscriminator?: boolean): any;