Exemplo n.º 1
0
        /// <summary>
        /// This call returns if is possible to start a specific profiles massive change
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="massiveChangeCanExecuteRequest">Request with profiles for massive change</param>
        /// <returns>Task of MassiveChangeCanExecuteResult</returns>
        public async System.Threading.Tasks.Task <MassiveChangeCanExecuteResult> MassiveChangeCanExecuteAsync(MassiveChangeCanExecuteRequest massiveChangeCanExecuteRequest)
        {
            ApiResponse <MassiveChangeCanExecuteResult> localVarResponse = await MassiveChangeCanExecuteAsyncWithHttpInfo(massiveChangeCanExecuteRequest);

            return(localVarResponse.Data);
        }
Exemplo n.º 2
0
        /// <summary>
        /// This call returns if is possible to start a specific profiles massive change
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="massiveChangeCanExecuteRequest">Request with profiles for massive change</param>
        /// <returns>Task of ApiResponse (MassiveChangeCanExecuteResult)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <MassiveChangeCanExecuteResult> > MassiveChangeCanExecuteAsyncWithHttpInfo(MassiveChangeCanExecuteRequest massiveChangeCanExecuteRequest)
        {
            // verify the required parameter 'massiveChangeCanExecuteRequest' is set
            if (massiveChangeCanExecuteRequest == null)
            {
                throw new ApiException(400, "Missing required parameter 'massiveChangeCanExecuteRequest' when calling MassiveChangeApi->MassiveChangeCanExecute");
            }

            var    localVarPath         = "/api/MassiveChange/canExecute";
            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",
                "text/json",
                "application/xml",
                "text/xml",
                "application/x-www-form-urlencoded"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            if (massiveChangeCanExecuteRequest != null && massiveChangeCanExecuteRequest.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(massiveChangeCanExecuteRequest); // http body (model) parameter
            }
            else
            {
                localVarPostBody = massiveChangeCanExecuteRequest; // byte array
            }

            // authentication (Authorization) 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("MassiveChangeCanExecute", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <MassiveChangeCanExecuteResult>(localVarStatusCode,
                                                                   localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                                   (MassiveChangeCanExecuteResult)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(MassiveChangeCanExecuteResult))));
        }
Exemplo n.º 3
0
        /// <summary>
        /// This call returns if is possible to start a specific profiles massive change
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="massiveChangeCanExecuteRequest">Request with profiles for massive change</param>
        /// <returns>MassiveChangeCanExecuteResult</returns>
        public MassiveChangeCanExecuteResult MassiveChangeCanExecute(MassiveChangeCanExecuteRequest massiveChangeCanExecuteRequest)
        {
            ApiResponse <MassiveChangeCanExecuteResult> localVarResponse = MassiveChangeCanExecuteWithHttpInfo(massiveChangeCanExecuteRequest);

            return(localVarResponse.Data);
        }