/** * 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 RelationBlockRead */ export interface RelationBlockRead { /** * * @type {string} * @memberof RelationBlockRead */ resourceId?: string; /** * * @type {string} * @memberof RelationBlockRead */ resource?: string; /** * * @type {string} * @memberof RelationBlockRead */ name?: string; } /** * Check if a given object implements the RelationBlockRead interface. */ export declare function instanceOfRelationBlockRead(value: object): value is RelationBlockRead; export declare function RelationBlockReadFromJSON(json: any): RelationBlockRead; export declare function RelationBlockReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): RelationBlockRead; export declare function RelationBlockReadToJSON(json: any): RelationBlockRead; export declare function RelationBlockReadToJSONTyped(value?: RelationBlockRead | null, ignoreDiscriminator?: boolean): any;