/** * 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 { Context, Destination, EnumBuilder } from './'; /** * * @export * @interface ImageBuildTaskAllOf */ export interface ImageBuildTaskAllOf { /** * * @type {EnumBuilder} * @memberof ImageBuildTaskAllOf */ builder?: EnumBuilder; /** * * @type {boolean} * @memberof ImageBuildTaskAllOf */ cache?: boolean; /** * * @type {Context} * @memberof ImageBuildTaskAllOf */ context?: Context; /** * * @type {Destination} * @memberof ImageBuildTaskAllOf */ destination?: Destination; } export declare function ImageBuildTaskAllOfFromJSON(json: any): ImageBuildTaskAllOf; export declare function ImageBuildTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageBuildTaskAllOf; export declare function ImageBuildTaskAllOfToJSON(value?: ImageBuildTaskAllOf | null): any;