/** * 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 LocalDestination */ export interface LocalDestination { /** * * @type {EnumDestinationType} * @memberof LocalDestination */ type: EnumDestinationType; /** * * @type {string} * @memberof LocalDestination */ filename?: string; } export declare function LocalDestinationFromJSON(json: any): LocalDestination; export declare function LocalDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocalDestination; export declare function LocalDestinationToJSON(value?: LocalDestination | null): any;