/** * 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 RelationRead */ export interface RelationRead { /** * * @type {string} * @memberof RelationRead */ id?: string; /** * * @type {string} * @memberof RelationRead */ key?: string; /** * * @type {string} * @memberof RelationRead */ name?: string; /** * * @type {string} * @memberof RelationRead */ objectResourceId?: string; /** * * @type {string} * @memberof RelationRead */ objectResource?: string; /** * * @type {string} * @memberof RelationRead */ subjectResourceId?: string; /** * * @type {string} * @memberof RelationRead */ subjectResource?: string; /** * * @type {string} * @memberof RelationRead */ organizationId?: string; /** * * @type {string} * @memberof RelationRead */ projectId?: string; /** * * @type {string} * @memberof RelationRead */ environmentId?: string; /** * * @type {string} * @memberof RelationRead */ createdAt?: string; /** * * @type {string} * @memberof RelationRead */ updatedAt?: string; } /** * Check if a given object implements the RelationRead interface. */ export declare function instanceOfRelationRead(value: object): value is RelationRead; export declare function RelationReadFromJSON(json: any): RelationRead; export declare function RelationReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationRead; export declare function RelationReadToJSON(json: any): RelationRead; export declare function RelationReadToJSONTyped(value?: RelationRead | null, ignoreDiscriminator?: boolean): any;