/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 DataSourceEntry */ export interface DataSourceEntry { /** * * @type {string} * @memberof DataSourceEntry */ token?: string; /** * * @type {string} * @memberof DataSourceEntry */ url?: string; /** * * @type {{ [key: string]: any; }} * @memberof DataSourceEntry */ config?: { [key: string]: any; }; /** * * @type {Array} * @memberof DataSourceEntry */ topics?: Array; /** * * @type {string} * @memberof DataSourceEntry */ dstPath?: string; /** * * @type {string} * @memberof DataSourceEntry */ saveMethod?: DataSourceEntrySaveMethodEnum; /** * * @type {string} * @memberof DataSourceEntry */ data?: string; } /** * @export */ export declare const DataSourceEntrySaveMethodEnum: { readonly Put: "PUT"; readonly Patch: "PATCH"; }; export type DataSourceEntrySaveMethodEnum = typeof DataSourceEntrySaveMethodEnum[keyof typeof DataSourceEntrySaveMethodEnum]; /** * Check if a given object implements the DataSourceEntry interface. */ export declare function instanceOfDataSourceEntry(value: object): value is DataSourceEntry; export declare function DataSourceEntryFromJSON(json: any): DataSourceEntry; export declare function DataSourceEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataSourceEntry; export declare function DataSourceEntryToJSON(json: any): DataSourceEntry; export declare function DataSourceEntryToJSONTyped(value?: DataSourceEntry | null, ignoreDiscriminator?: boolean): any;