/** * 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 ImageMetadataBlockAttributesLocation */ export interface ImageMetadataBlockAttributesLocation { /** * * @type {number} * @memberof ImageMetadataBlockAttributesLocation */ 'latitude'?: number | null; /** * * @type {number} * @memberof ImageMetadataBlockAttributesLocation */ 'longitude'?: number | null; } /** * Check if a given object implements the ImageMetadataBlockAttributesLocation interface. */ export declare function instanceOfImageMetadataBlockAttributesLocation(value: object): value is ImageMetadataBlockAttributesLocation; export declare function ImageMetadataBlockAttributesLocationFromJSON(json: any): ImageMetadataBlockAttributesLocation; export declare function ImageMetadataBlockAttributesLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageMetadataBlockAttributesLocation; export declare function ImageMetadataBlockAttributesLocationToJSON(json: any): ImageMetadataBlockAttributesLocation; export declare function ImageMetadataBlockAttributesLocationToJSONTyped(value?: ImageMetadataBlockAttributesLocation | null, ignoreDiscriminator?: boolean): any;