/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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. */ import type { NotepadMetadataBlockPreview } from './NotepadMetadataBlockPreview'; import type { NotepadMetadataBlockAttributes } from './NotepadMetadataBlockAttributes'; /** * * @export * @interface NotepadMetadataBlock */ export interface NotepadMetadataBlock { /** * * @type {NotepadMetadataBlockAttributes} * @memberof NotepadMetadataBlock */ 'attributes': NotepadMetadataBlockAttributes; /** * * @type {NotepadMetadataBlockPreview} * @memberof NotepadMetadataBlock */ 'preview': NotepadMetadataBlockPreview | null; /** * * @type {boolean} * @memberof NotepadMetadataBlock */ 'exceedsSize'?: boolean | null; /** * * @type {string} * @memberof NotepadMetadataBlock */ 'caption': string | null; /** * * @type {Array} * @memberof NotepadMetadataBlock */ 'keywords'?: Array | null; } /** * Check if a given object implements the NotepadMetadataBlock interface. */ export declare function instanceOfNotepadMetadataBlock(value: object): value is NotepadMetadataBlock; export declare function NotepadMetadataBlockFromJSON(json: any): NotepadMetadataBlock; export declare function NotepadMetadataBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotepadMetadataBlock; export declare function NotepadMetadataBlockToJSON(json: any): NotepadMetadataBlock; export declare function NotepadMetadataBlockToJSONTyped(value?: NotepadMetadataBlock | null, ignoreDiscriminator?: boolean): any;