/** * 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 CanvasMetadataBlockAttributes */ export interface CanvasMetadataBlockAttributes { /** * * @type {number} * @memberof CanvasMetadataBlockAttributes */ 'shapeCount'?: number | null; } /** * Check if a given object implements the CanvasMetadataBlockAttributes interface. */ export declare function instanceOfCanvasMetadataBlockAttributes(value: object): value is CanvasMetadataBlockAttributes; export declare function CanvasMetadataBlockAttributesFromJSON(json: any): CanvasMetadataBlockAttributes; export declare function CanvasMetadataBlockAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CanvasMetadataBlockAttributes; export declare function CanvasMetadataBlockAttributesToJSON(json: any): CanvasMetadataBlockAttributes; export declare function CanvasMetadataBlockAttributesToJSONTyped(value?: CanvasMetadataBlockAttributes | null, ignoreDiscriminator?: boolean): any;