/** * 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, ReqDockerhubCred } from './'; /** * * @export * @interface ReqDockerhubDestination */ export interface ReqDockerhubDestination { /** * * @type {EnumDestinationType} * @memberof ReqDockerhubDestination */ type: EnumDestinationType; /** * * @type {ReqDockerhubCred} * @memberof ReqDockerhubDestination */ credentials?: ReqDockerhubCred; /** * * @type {string} * @memberof ReqDockerhubDestination */ identity_uuid?: string; /** * * @type {string} * @memberof ReqDockerhubDestination */ tag?: string; /** * * @type {string} * @memberof ReqDockerhubDestination */ url: string; } export declare function ReqDockerhubDestinationFromJSON(json: any): ReqDockerhubDestination; export declare function ReqDockerhubDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqDockerhubDestination; export declare function ReqDockerhubDestinationToJSON(value?: ReqDockerhubDestination | null): any;