/** * 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 ReqDockerhubIdentityAllOf */ export interface ReqDockerhubIdentityAllOf { /** * * @type {ReqDockerhubCred} * @memberof ReqDockerhubIdentityAllOf */ credentials?: ReqDockerhubCred; } export declare function ReqDockerhubIdentityAllOfFromJSON(json: any): ReqDockerhubIdentityAllOf; export declare function ReqDockerhubIdentityAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqDockerhubIdentityAllOf; export declare function ReqDockerhubIdentityAllOfToJSON(value?: ReqDockerhubIdentityAllOf | null): any;