/** * 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 { EmailMessageMetadataBlockEmailPreview } from './EmailMessageMetadataBlockEmailPreview'; import type { DocumentMetadataBlockPdfRender } from './DocumentMetadataBlockPdfRender'; import type { DocumentMetadataBlockAttributes } from './DocumentMetadataBlockAttributes'; /** * * @export * @interface DocumentMetadataBlock */ export interface DocumentMetadataBlock { /** * Whether the resource is infected with malware * @type {boolean} * @memberof DocumentMetadataBlock */ 'infected': boolean; /** * * @type {EmailMessageMetadataBlockEmailPreview} * @memberof DocumentMetadataBlock */ 'documentPreview'?: EmailMessageMetadataBlockEmailPreview; /** * * @type {string} * @memberof DocumentMetadataBlock */ 'caption': string | null; /** * * @type {Array} * @memberof DocumentMetadataBlock */ 'keywords'?: Array | null; /** * * @type {DocumentMetadataBlockAttributes} * @memberof DocumentMetadataBlock */ 'attributes': DocumentMetadataBlockAttributes; /** * * @type {DocumentMetadataBlockPdfRender} * @memberof DocumentMetadataBlock */ 'pdfRender'?: DocumentMetadataBlockPdfRender | null; } /** * Check if a given object implements the DocumentMetadataBlock interface. */ export declare function instanceOfDocumentMetadataBlock(value: object): value is DocumentMetadataBlock; export declare function DocumentMetadataBlockFromJSON(json: any): DocumentMetadataBlock; export declare function DocumentMetadataBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentMetadataBlock; export declare function DocumentMetadataBlockToJSON(json: any): DocumentMetadataBlock; export declare function DocumentMetadataBlockToJSONTyped(value?: DocumentMetadataBlock | null, ignoreDiscriminator?: boolean): any;