/** * 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 { FileCreationMetadataAttributesDimensions } from './FileCreationMetadataAttributesDimensions'; /** * * @export * @interface FileCreationMetadataAttributes */ export interface FileCreationMetadataAttributes { /** * * @type {FileCreationMetadataAttributesDimensions} * @memberof FileCreationMetadataAttributes */ 'dimensions'?: FileCreationMetadataAttributesDimensions | null; } /** * Check if a given object implements the FileCreationMetadataAttributes interface. */ export declare function instanceOfFileCreationMetadataAttributes(value: object): value is FileCreationMetadataAttributes; export declare function FileCreationMetadataAttributesFromJSON(json: any): FileCreationMetadataAttributes; export declare function FileCreationMetadataAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileCreationMetadataAttributes; export declare function FileCreationMetadataAttributesToJSON(json: any): FileCreationMetadataAttributes; export declare function FileCreationMetadataAttributesToJSONTyped(value?: FileCreationMetadataAttributes | null, ignoreDiscriminator?: boolean): any;