/** * 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 NotepadMetadataBlockAttributes */ export interface NotepadMetadataBlockAttributes { /** * * @type {string} * @memberof NotepadMetadataBlockAttributes */ 'author': string | null; } /** * Check if a given object implements the NotepadMetadataBlockAttributes interface. */ export declare function instanceOfNotepadMetadataBlockAttributes(value: object): value is NotepadMetadataBlockAttributes; export declare function NotepadMetadataBlockAttributesFromJSON(json: any): NotepadMetadataBlockAttributes; export declare function NotepadMetadataBlockAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotepadMetadataBlockAttributes; export declare function NotepadMetadataBlockAttributesToJSON(json: any): NotepadMetadataBlockAttributes; export declare function NotepadMetadataBlockAttributesToJSONTyped(value?: NotepadMetadataBlockAttributes | null, ignoreDiscriminator?: boolean): any;