/** * 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 ImageMetadataBlockAttributesDevice */ export interface ImageMetadataBlockAttributesDevice { /** * * @type {string} * @memberof ImageMetadataBlockAttributesDevice */ 'maker'?: string | null; /** * * @type {string} * @memberof ImageMetadataBlockAttributesDevice */ 'model'?: string | null; /** * * @type {string} * @memberof ImageMetadataBlockAttributesDevice */ 'software'?: string | null; } /** * Check if a given object implements the ImageMetadataBlockAttributesDevice interface. */ export declare function instanceOfImageMetadataBlockAttributesDevice(value: object): value is ImageMetadataBlockAttributesDevice; export declare function ImageMetadataBlockAttributesDeviceFromJSON(json: any): ImageMetadataBlockAttributesDevice; export declare function ImageMetadataBlockAttributesDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageMetadataBlockAttributesDevice; export declare function ImageMetadataBlockAttributesDeviceToJSON(json: any): ImageMetadataBlockAttributesDevice; export declare function ImageMetadataBlockAttributesDeviceToJSONTyped(value?: ImageMetadataBlockAttributesDevice | null, ignoreDiscriminator?: boolean): any;