/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ETLControlSystem, ETLDataSystem, ETLManifestsSystem } from './'; /** * * @export * @interface ETLLocalInbox */ export interface ETLLocalInbox { /** * * @type {ETLManifestsSystem} * @memberof ETLLocalInbox */ manifests: ETLManifestsSystem; /** * * @type {ETLDataSystem} * @memberof ETLLocalInbox */ data: ETLDataSystem; /** * * @type {ETLControlSystem} * @memberof ETLLocalInbox */ control?: ETLControlSystem; } export declare function ETLLocalInboxFromJSON(json: any): ETLLocalInbox; export declare function ETLLocalInboxFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLLocalInbox; export declare function ETLLocalInboxToJSON(value?: ETLLocalInbox | null): any;