/** * 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. */ /** * * @export * @interface DockerhubCred */ export interface DockerhubCred { /** * * @type {string} * @memberof DockerhubCred */ token?: string; /** * * @type {string} * @memberof DockerhubCred */ username?: string; } export declare function DockerhubCredFromJSON(json: any): DockerhubCred; export declare function DockerhubCredFromJSONTyped(json: any, ignoreDiscriminator: boolean): DockerhubCred; export declare function DockerhubCredToJSON(value?: DockerhubCred | null): any;