/** * 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. */ /** * * @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 declare function DoneFileDataIntegrityProfileAllOfFromJSON(json: any): DoneFileDataIntegrityProfileAllOf; export declare function DoneFileDataIntegrityProfileAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): DoneFileDataIntegrityProfileAllOf; export declare function DoneFileDataIntegrityProfileAllOfToJSON(value?: DoneFileDataIntegrityProfileAllOf | null): any;