/** * 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 RelationshipTupleCreate */ export interface RelationshipTupleCreate { /** * * @type {string} * @memberof RelationshipTupleCreate */ subject?: string; /** * * @type {string} * @memberof RelationshipTupleCreate */ relation?: string; /** * * @type {string} * @memberof RelationshipTupleCreate */ object?: string; /** * * @type {string} * @memberof RelationshipTupleCreate */ tenant?: string; } /** * Check if a given object implements the RelationshipTupleCreate interface. */ export declare function instanceOfRelationshipTupleCreate(value: object): value is RelationshipTupleCreate; export declare function RelationshipTupleCreateFromJSON(json: any): RelationshipTupleCreate; export declare function RelationshipTupleCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationshipTupleCreate; export declare function RelationshipTupleCreateToJSON(json: any): RelationshipTupleCreate; export declare function RelationshipTupleCreateToJSONTyped(value?: RelationshipTupleCreate | null, ignoreDiscriminator?: boolean): any;