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