/** * 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 ReqDockerhubContextAllOf */ export interface ReqDockerhubContextAllOf { /** * * @type {ReqDockerhubCred} * @memberof ReqDockerhubContextAllOf */ credentials?: ReqDockerhubCred; /** * * @type {string} * @memberof ReqDockerhubContextAllOf */ identity_uuid?: string; } export declare function ReqDockerhubContextAllOfFromJSON(json: any): ReqDockerhubContextAllOf; export declare function ReqDockerhubContextAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqDockerhubContextAllOf; export declare function ReqDockerhubContextAllOfToJSON(value?: ReqDockerhubContextAllOf | null): any;