/** * 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 ImageMetadataBlockAttributesColor */ export interface ImageMetadataBlockAttributesColor { /** * * @type {string} * @memberof ImageMetadataBlockAttributesColor */ 'profile'?: string | null; /** * * @type {string} * @memberof ImageMetadataBlockAttributesColor */ 'space'?: string | null; /** * * @type {boolean} * @memberof ImageMetadataBlockAttributesColor */ 'alphaChannel'?: boolean | null; /** * * @type {string} * @memberof ImageMetadataBlockAttributesColor */ 'pixelFormat'?: string | null; /** * * @type {string} * @memberof ImageMetadataBlockAttributesColor */ 'transfer'?: string | null; /** * * @type {string} * @memberof ImageMetadataBlockAttributesColor */ 'primaries'?: string | null; } /** * Check if a given object implements the ImageMetadataBlockAttributesColor interface. */ export declare function instanceOfImageMetadataBlockAttributesColor(value: object): value is ImageMetadataBlockAttributesColor; export declare function ImageMetadataBlockAttributesColorFromJSON(json: any): ImageMetadataBlockAttributesColor; export declare function ImageMetadataBlockAttributesColorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageMetadataBlockAttributesColor; export declare function ImageMetadataBlockAttributesColorToJSON(json: any): ImageMetadataBlockAttributesColor; export declare function ImageMetadataBlockAttributesColorToJSONTyped(value?: ImageMetadataBlockAttributesColor | null, ignoreDiscriminator?: boolean): any;