/** * 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 RequestTaskAllOf */ export interface RequestTaskAllOf { /** * * @type {object} * @memberof RequestTaskAllOf */ auth?: object; /** * * @type {object} * @memberof RequestTaskAllOf */ data?: object; /** * * @type {object} * @memberof RequestTaskAllOf */ headers?: object; /** * * @type {EnumHTTPMethod} * @memberof RequestTaskAllOf */ http_method?: EnumHTTPMethod; /** * * @type {object} * @memberof RequestTaskAllOf */ query_params?: object; /** * * @type {string} * @memberof RequestTaskAllOf */ url?: string; } export declare function RequestTaskAllOfFromJSON(json: any): RequestTaskAllOf; export declare function RequestTaskAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTaskAllOf; export declare function RequestTaskAllOfToJSON(value?: RequestTaskAllOf | null): any;