/** * 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 { PresignedImage } from './PresignedImage'; import type { DocumentMetadataBlockAttributesDocument } from './DocumentMetadataBlockAttributesDocument'; import type { DocumentMetadataBlockAttributesDimensions } from './DocumentMetadataBlockAttributesDimensions'; /** * * @export * @interface DocumentMetadataBlockAttributes */ export interface DocumentMetadataBlockAttributes { /** * * @type {DocumentMetadataBlockAttributesDocument} * @memberof DocumentMetadataBlockAttributes */ 'document'?: DocumentMetadataBlockAttributesDocument | null; /** * * @type {DocumentMetadataBlockAttributesDimensions} * @memberof DocumentMetadataBlockAttributes */ 'dimensions'?: DocumentMetadataBlockAttributesDimensions | null; /** * * @type {PresignedImage} * @memberof DocumentMetadataBlockAttributes */ 'cover': PresignedImage | null; } /** * Check if a given object implements the DocumentMetadataBlockAttributes interface. */ export declare function instanceOfDocumentMetadataBlockAttributes(value: object): value is DocumentMetadataBlockAttributes; export declare function DocumentMetadataBlockAttributesFromJSON(json: any): DocumentMetadataBlockAttributes; export declare function DocumentMetadataBlockAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentMetadataBlockAttributes; export declare function DocumentMetadataBlockAttributesToJSON(json: any): DocumentMetadataBlockAttributes; export declare function DocumentMetadataBlockAttributesToJSONTyped(value?: DocumentMetadataBlockAttributes | null, ignoreDiscriminator?: boolean): any;