/** * 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 DocumentMetadataBlockAttributesDocument */ export interface DocumentMetadataBlockAttributesDocument { /** * * @type {number} * @memberof DocumentMetadataBlockAttributesDocument */ 'pages'?: number | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'author'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'title'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'subject'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'keywords'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'producer'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'creator'?: string | null; /** * * @type {boolean} * @memberof DocumentMetadataBlockAttributesDocument */ 'security'?: boolean | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'version'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'creationDate'?: string | null; /** * * @type {string} * @memberof DocumentMetadataBlockAttributesDocument */ 'modificationDate'?: string | null; } /** * Check if a given object implements the DocumentMetadataBlockAttributesDocument interface. */ export declare function instanceOfDocumentMetadataBlockAttributesDocument(value: object): value is DocumentMetadataBlockAttributesDocument; export declare function DocumentMetadataBlockAttributesDocumentFromJSON(json: any): DocumentMetadataBlockAttributesDocument; export declare function DocumentMetadataBlockAttributesDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentMetadataBlockAttributesDocument; export declare function DocumentMetadataBlockAttributesDocumentToJSON(json: any): DocumentMetadataBlockAttributesDocument; export declare function DocumentMetadataBlockAttributesDocumentToJSONTyped(value?: DocumentMetadataBlockAttributesDocument | null, ignoreDiscriminator?: boolean): any;