/** * 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 { EnumBuilder, ReqContext, ReqDestination } from './'; /** * * @export * @interface ReqImageBuildTaskAllOf */ export interface ReqImageBuildTaskAllOf { /** * * @type {EnumBuilder} * @memberof ReqImageBuildTaskAllOf */ builder: EnumBuilder; /** * * @type {boolean} * @memberof ReqImageBuildTaskAllOf */ cache?: boolean; /** * * @type {ReqContext} * @memberof ReqImageBuildTaskAllOf */ context: ReqContext; /** * * @type {ReqDestination} * @memberof ReqImageBuildTaskAllOf */ destination: ReqDestination; } export declare function ReqImageBuildTaskAllOfFromJSON(json: any): ReqImageBuildTaskAllOf; export declare function ReqImageBuildTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqImageBuildTaskAllOf; export declare function ReqImageBuildTaskAllOfToJSON(value?: ReqImageBuildTaskAllOf | null): any;