/** * 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 { EnumHTTPMethod } from './'; /** * * @export * @interface ReqRequestTaskAllOf */ export interface ReqRequestTaskAllOf { /** * * @type {object} * @memberof ReqRequestTaskAllOf */ auth?: object; /** * * @type {object} * @memberof ReqRequestTaskAllOf */ data?: object; /** * * @type {object} * @memberof ReqRequestTaskAllOf */ headers?: object; /** * * @type {EnumHTTPMethod} * @memberof ReqRequestTaskAllOf */ http_method: EnumHTTPMethod; /** * * @type {object} * @memberof ReqRequestTaskAllOf */ query_params?: object; /** * * @type {string} * @memberof ReqRequestTaskAllOf */ url: string; } export declare function ReqRequestTaskAllOfFromJSON(json: any): ReqRequestTaskAllOf; export declare function ReqRequestTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqRequestTaskAllOf; export declare function ReqRequestTaskAllOfToJSON(value?: ReqRequestTaskAllOf | null): any;