/* tslint:disable */ /* eslint-disable */ /** * 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 { exists, mapValues } from '../runtime'; import { DataIntegrityProfile, DataIntegrityProfileFromJSON, DataIntegrityProfileFromJSONTyped, DataIntegrityProfileToJSON, } from './'; /** * * @export * @interface ETLDataSystemAllOf */ export interface ETLDataSystemAllOf { /** * * @type {DataIntegrityProfile} * @memberof ETLDataSystemAllOf */ integrity_profile?: DataIntegrityProfile; } export function ETLDataSystemAllOfFromJSON(json: any): ETLDataSystemAllOf { return ETLDataSystemAllOfFromJSONTyped(json, false); } export function ETLDataSystemAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ETLDataSystemAllOf { if ((json === undefined) || (json === null)) { return json; } return { 'integrity_profile': !exists(json, 'integrity_profile') ? undefined : DataIntegrityProfileFromJSON(json['integrity_profile']), }; } export function ETLDataSystemAllOfToJSON(value?: ETLDataSystemAllOf | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'integrity_profile': DataIntegrityProfileToJSON(value.integrity_profile), }; }