Exemplo n.º 1
0
        /// <summary>
        /// This call evaluates a formula
        /// </summary>
        /// <exception cref="IO.Swagger.Workflow.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">Formula to evaluate</param>
        /// <returns>Task of FormuleTestResultRm</returns>
        public async System.Threading.Tasks.Task <FormuleTestResultRm> ApiV1FormulesEvaluatePostAsync(FormuleTestRequestRm body)
        {
            ApiResponse <FormuleTestResultRm> localVarResponse = await ApiV1FormulesEvaluatePostAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
Exemplo n.º 2
0
        /// <summary>
        /// This call evaluates a formula
        /// </summary>
        /// <exception cref="IO.Swagger.Workflow.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">Formula to evaluate</param>
        /// <returns>Task of ApiResponse (FormuleTestResultRm)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <FormuleTestResultRm> > ApiV1FormulesEvaluatePostAsyncWithHttpInfo(FormuleTestRequestRm body)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling FormulesApi->ApiV1FormulesEvaluatePost");
            }

            var    localVarPath         = "/api/v1/formules/evaluate";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
                "application/json-patch+json",
                "application/json",
                "text/json",
                "application/_*+json"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "text/plain",
                "application/json",
                "text/json"
            };
            String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }
            // authentication (Bearer) required
            if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Authorization")))
            {
                localVarHeaderParams["Authorization"] = this.Configuration.GetApiKeyWithPrefix("Authorization");
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                            Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                            localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("ApiV1FormulesEvaluatePost", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <FormuleTestResultRm>(localVarStatusCode,
                                                         localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                                         (FormuleTestResultRm)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(FormuleTestResultRm))));
        }
Exemplo n.º 3
0
        /// <summary>
        /// This call evaluates a formula
        /// </summary>
        /// <exception cref="IO.Swagger.Workflow.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">Formula to evaluate</param>
        /// <returns>FormuleTestResultRm</returns>
        public FormuleTestResultRm ApiV1FormulesEvaluatePost(FormuleTestRequestRm body)
        {
            ApiResponse <FormuleTestResultRm> localVarResponse = ApiV1FormulesEvaluatePostWithHttpInfo(body);

            return(localVarResponse.Data);
        }