/** * 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 } from './'; /** * * @export * @interface RegistryDestinationAllOf */ export interface RegistryDestinationAllOf { /** * * @type {DockerhubCred} * @memberof RegistryDestinationAllOf */ credentials?: DockerhubCred; /** * * @type {string} * @memberof RegistryDestinationAllOf */ tag?: string; /** * * @type {string} * @memberof RegistryDestinationAllOf */ url?: string; } export declare function RegistryDestinationAllOfFromJSON(json: any): RegistryDestinationAllOf; export declare function RegistryDestinationAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegistryDestinationAllOf; export declare function RegistryDestinationAllOfToJSON(value?: RegistryDestinationAllOf | null): any;