/** * 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. */ /** * * @export * @interface NotepadMetadataBlockPreview */ export interface NotepadMetadataBlockPreview { /** * HTML content of the notepad * @type {string} * @memberof NotepadMetadataBlockPreview */ 'content': string | null; /** * * @type {string} * @memberof NotepadMetadataBlockPreview */ 'modifiedAt': string; } /** * Check if a given object implements the NotepadMetadataBlockPreview interface. */ export declare function instanceOfNotepadMetadataBlockPreview(value: object): value is NotepadMetadataBlockPreview; export declare function NotepadMetadataBlockPreviewFromJSON(json: any): NotepadMetadataBlockPreview; export declare function NotepadMetadataBlockPreviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotepadMetadataBlockPreview; export declare function NotepadMetadataBlockPreviewToJSON(json: any): NotepadMetadataBlockPreview; export declare function NotepadMetadataBlockPreviewToJSONTyped(value?: NotepadMetadataBlockPreview | null, ignoreDiscriminator?: boolean): any;