/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AICategoryMiniReference, AIImageReference } from './'; /** * * @export * @interface AIAnnotationUpdate */ export interface AIAnnotationUpdate { /** * * @type {AIImageReference} * @memberof AIAnnotationUpdate */ image: AIImageReference; /** * * @type {AICategoryMiniReference} * @memberof AIAnnotationUpdate */ category: AICategoryMiniReference; /** * * @type {number} * @memberof AIAnnotationUpdate */ relativeLeft: number; /** * * @type {number} * @memberof AIAnnotationUpdate */ relativeTop: number; /** * * @type {number} * @memberof AIAnnotationUpdate */ relativeWidth: number; /** * * @type {number} * @memberof AIAnnotationUpdate */ relativeHeight: number; /** * * @type {string} * @memberof AIAnnotationUpdate */ track?: string; /** * * @type {number} * @memberof AIAnnotationUpdate */ createdBy?: number | null; } export declare function AIAnnotationUpdateFromJSON(json: any): AIAnnotationUpdate; export declare function AIAnnotationUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIAnnotationUpdate; export declare function AIAnnotationUpdateToJSON(value?: AIAnnotationUpdate | null): any;