/** * 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 AIAnnotation */ export interface AIAnnotation { /** * * @type {string} * @memberof AIAnnotation */ id: string; /** * * @type {AIImageReference} * @memberof AIAnnotation */ image: AIImageReference; /** * * @type {AICategoryMiniReference} * @memberof AIAnnotation */ category: AICategoryMiniReference; /** * * @type {string} * @memberof AIAnnotation */ readonly assetDisplayName: string; /** * * @type {string} * @memberof AIAnnotation */ readonly transforms: string; /** * * @type {number} * @memberof AIAnnotation */ relativeLeft: number; /** * * @type {number} * @memberof AIAnnotation */ relativeTop: number; /** * * @type {number} * @memberof AIAnnotation */ relativeWidth: number; /** * * @type {number} * @memberof AIAnnotation */ relativeHeight: number; /** * * @type {string} * @memberof AIAnnotation */ track?: string; /** * * @type {Date} * @memberof AIAnnotation */ readonly createdAt: Date; /** * * @type {number} * @memberof AIAnnotation */ createdBy?: number | null; } export declare function AIAnnotationFromJSON(json: any): AIAnnotation; export declare function AIAnnotationFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIAnnotation; export declare function AIAnnotationToJSON(value?: AIAnnotation | null): any;