/** * 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. */ /** * * @export * @interface AIDatasetSimpleReference */ export interface AIDatasetSimpleReference { /** * * @type {string} * @memberof AIDatasetSimpleReference */ id: string; /** * * @type {string} * @memberof AIDatasetSimpleReference */ readonly name?: string; /** * * @type {string} * @memberof AIDatasetSimpleReference */ readonly type?: AIDatasetSimpleReferenceTypeEnum; /** * * @type {number} * @memberof AIDatasetSimpleReference */ readonly connection?: number; } /** * @export * @enum {string} */ export declare enum AIDatasetSimpleReferenceTypeEnum { Normal = "normal", FaceLibrary = "face-library" } export declare function AIDatasetSimpleReferenceFromJSON(json: any): AIDatasetSimpleReference; export declare function AIDatasetSimpleReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIDatasetSimpleReference; export declare function AIDatasetSimpleReferenceToJSON(value?: AIDatasetSimpleReference | null): any;