/** * 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 { EnumDestinationType } from './'; /** * * @export * @interface ReqLocalDestination */ export interface ReqLocalDestination { /** * * @type {EnumDestinationType} * @memberof ReqLocalDestination */ type: EnumDestinationType; /** * * @type {string} * @memberof ReqLocalDestination */ filename?: string; } export declare function ReqLocalDestinationFromJSON(json: any): ReqLocalDestination; export declare function ReqLocalDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqLocalDestination; export declare function ReqLocalDestinationToJSON(value?: ReqLocalDestination | null): any;