/** * 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 DocumentMetadataBlockAttributesDimensions */ export interface DocumentMetadataBlockAttributesDimensions { /** * * @type {number} * @memberof DocumentMetadataBlockAttributesDimensions */ 'width': number | null; /** * * @type {number} * @memberof DocumentMetadataBlockAttributesDimensions */ 'height': number | null; } /** * Check if a given object implements the DocumentMetadataBlockAttributesDimensions interface. */ export declare function instanceOfDocumentMetadataBlockAttributesDimensions(value: object): value is DocumentMetadataBlockAttributesDimensions; export declare function DocumentMetadataBlockAttributesDimensionsFromJSON(json: any): DocumentMetadataBlockAttributesDimensions; export declare function DocumentMetadataBlockAttributesDimensionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentMetadataBlockAttributesDimensions; export declare function DocumentMetadataBlockAttributesDimensionsToJSON(json: any): DocumentMetadataBlockAttributesDimensions; export declare function DocumentMetadataBlockAttributesDimensionsToJSONTyped(value?: DocumentMetadataBlockAttributesDimensions | null, ignoreDiscriminator?: boolean): any;