/** * 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 DockerhubDestination */ export interface DockerhubDestination { /** * * @type {EnumDestinationType} * @memberof DockerhubDestination */ type: EnumDestinationType; /** * * @type {DockerhubCred} * @memberof DockerhubDestination */ credentials?: DockerhubCred; /** * * @type {string} * @memberof DockerhubDestination */ tag?: string; /** * * @type {string} * @memberof DockerhubDestination */ url?: string; } export declare function DockerhubDestinationFromJSON(json: any): DockerhubDestination; export declare function DockerhubDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): DockerhubDestination; export declare function DockerhubDestinationToJSON(value?: DockerhubDestination | null): any;