/** * 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 ActionBlockRead */ export interface ActionBlockRead { /** * * @type {string} * @memberof ActionBlockRead */ id?: string; /** * * @type {string} * @memberof ActionBlockRead */ key?: string; /** * * @type {string} * @memberof ActionBlockRead */ name?: string; /** * * @type {string} * @memberof ActionBlockRead */ description?: string; /** * * @type {{ [key: string]: any; }} * @memberof ActionBlockRead */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the ActionBlockRead interface. */ export declare function instanceOfActionBlockRead(value: object): value is ActionBlockRead; export declare function ActionBlockReadFromJSON(json: any): ActionBlockRead; export declare function ActionBlockReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionBlockRead; export declare function ActionBlockReadToJSON(json: any): ActionBlockRead; export declare function ActionBlockReadToJSONTyped(value?: ActionBlockRead | null, ignoreDiscriminator?: boolean): any;