/** * 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 VeritoneConnection */ export interface VeritoneConnection { /** * * @type {number} * @memberof VeritoneConnection */ id: number; /** * * @type {string} * @memberof VeritoneConnection */ name: string; } export declare function VeritoneConnectionFromJSON(json: any): VeritoneConnection; export declare function VeritoneConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): VeritoneConnection; export declare function VeritoneConnectionToJSON(value?: VeritoneConnection | null): any;