/** * 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 { Webpage } from './Webpage'; import type { HighlightMetadataBlockPdfRender } from './HighlightMetadataBlockPdfRender'; import type { BookmarkMetadataBlockAttributes } from './BookmarkMetadataBlockAttributes'; import type { HighlightMetadataBlockExtensionContext } from './HighlightMetadataBlockExtensionContext'; /** * * @export * @interface HighlightMetadataBlock */ export interface HighlightMetadataBlock { /** * * @type {BookmarkMetadataBlockAttributes} * @memberof HighlightMetadataBlock */ 'attributes': BookmarkMetadataBlockAttributes; /** * * @type {Webpage} * @memberof HighlightMetadataBlock */ 'webpage': Webpage | null; /** * * @type {string} * @memberof HighlightMetadataBlock */ 'caption': string | null; /** * * @type {Array} * @memberof HighlightMetadataBlock */ 'keywords'?: Array | null; /** * * @type {HighlightMetadataBlockExtensionContext} * @memberof HighlightMetadataBlock */ 'extensionContext': HighlightMetadataBlockExtensionContext | null; /** * * @type {HighlightMetadataBlockPdfRender} * @memberof HighlightMetadataBlock */ 'pdfRender'?: HighlightMetadataBlockPdfRender | null; } /** * Check if a given object implements the HighlightMetadataBlock interface. */ export declare function instanceOfHighlightMetadataBlock(value: object): value is HighlightMetadataBlock; export declare function HighlightMetadataBlockFromJSON(json: any): HighlightMetadataBlock; export declare function HighlightMetadataBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): HighlightMetadataBlock; export declare function HighlightMetadataBlockToJSON(json: any): HighlightMetadataBlock; export declare function HighlightMetadataBlockToJSONTyped(value?: HighlightMetadataBlock | null, ignoreDiscriminator?: boolean): any;