/** * Data Labeling API * Use Data Labeling API to create Annotations on Images, Texts & Documents, and generate snapshots. * OpenAPI spec version: 20211001 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * An annotation summary is the representation returned in list views. It is usually a subset of the full annotation entity and should not contain any potentially sensitive information. */ export interface AnnotationSummary { /** * The OCID of the annotation. */ "id": string; /** * The date and time the annotation was created, in the timestamp format defined by RFC3339. */ "timeCreated": Date; /** * The date and time the resource was updated, in the timestamp format defined by RFC3339. */ "timeUpdated": Date; /** * The OCID of the record annotated. */ "recordId": string; /** * The OCID of the compartment for the annotation. */ "compartmentId": string; /** * Describes the lifecycle state. */ "lifecycleState": string; /** * A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. * For example: {@code {\"bar-key\": \"value\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * The defined tags for this resource. Each key is predefined and scoped to a namespace. * For example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}} * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; } export declare namespace AnnotationSummary { function getJsonObj(obj: AnnotationSummary): object; function getDeserializedJsonObj(obj: AnnotationSummary): object; }