/** * 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 ReqRegistryDestination */ export interface ReqRegistryDestination { /** * * @type {EnumDestinationType} * @memberof ReqRegistryDestination */ type: EnumDestinationType; /** * * @type {ReqDockerhubCred} * @memberof ReqRegistryDestination */ credentials?: ReqDockerhubCred; /** * * @type {string} * @memberof ReqRegistryDestination */ identity_uuid?: string; /** * * @type {string} * @memberof ReqRegistryDestination */ tag?: string; /** * * @type {string} * @memberof ReqRegistryDestination */ url: string; } export declare function ReqRegistryDestinationFromJSON(json: any): ReqRegistryDestination; export declare function ReqRegistryDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqRegistryDestination; export declare function ReqRegistryDestinationToJSON(value?: ReqRegistryDestination | null): any;