/** * 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 ActionBlockEditable */ export interface ActionBlockEditable { /** * * @type {string} * @memberof ActionBlockEditable */ name?: string; /** * * @type {string} * @memberof ActionBlockEditable */ description?: string; } /** * Check if a given object implements the ActionBlockEditable interface. */ export declare function instanceOfActionBlockEditable(value: object): value is ActionBlockEditable; export declare function ActionBlockEditableFromJSON(json: any): ActionBlockEditable; export declare function ActionBlockEditableFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionBlockEditable; export declare function ActionBlockEditableToJSON(json: any): ActionBlockEditable; export declare function ActionBlockEditableToJSONTyped(value?: ActionBlockEditable | null, ignoreDiscriminator?: boolean): any;