/** * 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 { DataIntegrityProfile } from './'; /** * * @export * @interface ETLDataSystemAllOf */ export interface ETLDataSystemAllOf { /** * * @type {DataIntegrityProfile} * @memberof ETLDataSystemAllOf */ integrity_profile?: DataIntegrityProfile; } export declare function ETLDataSystemAllOfFromJSON(json: any): ETLDataSystemAllOf; export declare function ETLDataSystemAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLDataSystemAllOf; export declare function ETLDataSystemAllOfToJSON(value?: ETLDataSystemAllOf | null): any;