/** * 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 { ETLEnumManifestGenerationPolicy, ETLEnumManifestPriority } from './'; /** * * @export * @interface ETLManifestsSystemAllOf */ export interface ETLManifestsSystemAllOf { /** * * @type {ETLEnumManifestGenerationPolicy} * @memberof ETLManifestsSystemAllOf */ generation_policy?: ETLEnumManifestGenerationPolicy; /** * * @type {ETLEnumManifestPriority} * @memberof ETLManifestsSystemAllOf */ priority?: ETLEnumManifestPriority; } export declare function ETLManifestsSystemAllOfFromJSON(json: any): ETLManifestsSystemAllOf; export declare function ETLManifestsSystemAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLManifestsSystemAllOf; export declare function ETLManifestsSystemAllOfToJSON(value?: ETLManifestsSystemAllOf | null): any;