/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * 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 { /** * Unique id of the relationship tuple * @type {string} * @memberof RelationshipTupleRead */ id: string; /** * resource_key:resource_instance_key of the subject * @type {string} * @memberof RelationshipTupleRead */ subject: string; /** * key of the assigned relation * @type {string} * @memberof RelationshipTupleRead */ relation: string; /** * resource_key:resource_instance_key of the object * @type {string} * @memberof RelationshipTupleRead */ object: string; /** * Unique id of the subject * @type {string} * @memberof RelationshipTupleRead */ subject_id: string; /** * Unique id of the relation * @type {string} * @memberof RelationshipTupleRead */ relation_id: string; /** * Unique id of the object * @type {string} * @memberof RelationshipTupleRead */ object_id: string; /** * Unique id of the tenant * @type {string} * @memberof RelationshipTupleRead */ tenant_id: string; /** * Unique id of the organization that the relationship tuple belongs to. * @type {string} * @memberof RelationshipTupleRead */ organization_id: string; /** * Unique id of the project that the relationship tuple belongs to. * @type {string} * @memberof RelationshipTupleRead */ project_id: string; /** * Unique id of the environment that the relationship tuple belongs to. * @type {string} * @memberof RelationshipTupleRead */ environment_id: string; /** * Date and time when the relationship tuple was created (ISO_8601 format). * @type {string} * @memberof RelationshipTupleRead */ created_at: string; /** * Date and time when the relationship tuple was created (ISO_8601 format). * @type {string} * @memberof RelationshipTupleRead */ updated_at: string; }