/* 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'; /** * * @export * @interface DoneFileDataIntegrityProfileAllOf */ export interface DoneFileDataIntegrityProfileAllOf { /** * * @type {string} * @memberof DoneFileDataIntegrityProfileAllOf */ type?: string; /** * * @type {string} * @memberof DoneFileDataIntegrityProfileAllOf */ done_files_path: string; /** * * @type {Array} * @memberof DoneFileDataIntegrityProfileAllOf */ include_patterns?: Array; /** * * @type {Array} * @memberof DoneFileDataIntegrityProfileAllOf */ exclude_patterns?: Array; } export function DoneFileDataIntegrityProfileAllOfFromJSON(json: any): DoneFileDataIntegrityProfileAllOf { return DoneFileDataIntegrityProfileAllOfFromJSONTyped(json, false); } export function DoneFileDataIntegrityProfileAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): DoneFileDataIntegrityProfileAllOf { if ((json === undefined) || (json === null)) { return json; } return { 'type': !exists(json, 'type') ? undefined : json['type'], 'done_files_path': json['done_files_path'], 'include_patterns': !exists(json, 'include_patterns') ? undefined : json['include_patterns'], 'exclude_patterns': !exists(json, 'exclude_patterns') ? undefined : json['exclude_patterns'], }; } export function DoneFileDataIntegrityProfileAllOfToJSON(value?: DoneFileDataIntegrityProfileAllOf | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'type': value.type, 'done_files_path': value.done_files_path, 'include_patterns': value.include_patterns, 'exclude_patterns': value.exclude_patterns, }; }