/** * 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 { ImageMetadataBlockAttributesLocation } from './ImageMetadataBlockAttributesLocation'; import type { ImageMetadataBlockAttributesColor } from './ImageMetadataBlockAttributesColor'; import type { ImageMetadataBlockAttributesDevice } from './ImageMetadataBlockAttributesDevice'; import type { DocumentMetadataBlockAttributesDimensions } from './DocumentMetadataBlockAttributesDimensions'; /** * * @export * @interface ImageMetadataBlockAttributes */ export interface ImageMetadataBlockAttributes { /** * * @type {DocumentMetadataBlockAttributesDimensions} * @memberof ImageMetadataBlockAttributes */ 'dimensions'?: DocumentMetadataBlockAttributesDimensions | null; /** * * @type {ImageMetadataBlockAttributesColor} * @memberof ImageMetadataBlockAttributes */ 'color'?: ImageMetadataBlockAttributesColor | null; /** * * @type {ImageMetadataBlockAttributesDevice} * @memberof ImageMetadataBlockAttributes */ 'device'?: ImageMetadataBlockAttributesDevice | null; /** * * @type {ImageMetadataBlockAttributesLocation} * @memberof ImageMetadataBlockAttributes */ 'location'?: ImageMetadataBlockAttributesLocation | null; } /** * Check if a given object implements the ImageMetadataBlockAttributes interface. */ export declare function instanceOfImageMetadataBlockAttributes(value: object): value is ImageMetadataBlockAttributes; export declare function ImageMetadataBlockAttributesFromJSON(json: any): ImageMetadataBlockAttributes; export declare function ImageMetadataBlockAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageMetadataBlockAttributes; export declare function ImageMetadataBlockAttributesToJSON(json: any): ImageMetadataBlockAttributes; export declare function ImageMetadataBlockAttributesToJSONTyped(value?: ImageMetadataBlockAttributes | null, ignoreDiscriminator?: boolean): any;