/** * 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 { DockerhubCred, EnumDestinationType } from './'; /** * * @export * @interface Destination */ export interface Destination { /** * * @type {EnumDestinationType} * @memberof Destination */ type: EnumDestinationType; /** * * @type {DockerhubCred} * @memberof Destination */ credentials?: DockerhubCred; /** * * @type {string} * @memberof Destination */ tag?: string; /** * * @type {string} * @memberof Destination */ url?: string; /** * * @type {string} * @memberof Destination */ filename?: string; } export declare function DestinationFromJSON(json: any): Destination; export declare function DestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Destination; export declare function DestinationToJSON(value?: Destination | null): any;