/* 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 ReqRemovePipelineArchive */ export interface ReqRemovePipelineArchive { /** * * @type {string} * @memberof ReqRemovePipelineArchive */ archive_id: string; } export function ReqRemovePipelineArchiveFromJSON(json: any): ReqRemovePipelineArchive { return ReqRemovePipelineArchiveFromJSONTyped(json, false); } export function ReqRemovePipelineArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqRemovePipelineArchive { if ((json === undefined) || (json === null)) { return json; } return { 'archive_id': json['archive_id'], }; } export function ReqRemovePipelineArchiveToJSON(value?: ReqRemovePipelineArchive | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'archive_id': value.archive_id, }; }