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