Exemplo n.º 1
0
        /// <summary>
        /// Network Sizes The number of in-network Providers for each network/state combination provided. This data is recalculated nightly.
        /// </summary>
        /// <exception cref="IO.Vericred.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>Task of StateNetworkSizeResponse</returns>
        public async System.Threading.Tasks.Task <StateNetworkSizeResponse> SearchNetworkSizesAsync(StateNetworkSizeRequest body)
        {
            ApiResponse <StateNetworkSizeResponse> localVarResponse = await SearchNetworkSizesAsyncWithHttpInfo(body);

            return(localVarResponse.Data);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Network Sizes The number of in-network Providers for each network/state combination provided. This data is recalculated nightly.
        /// </summary>
        /// <exception cref="IO.Vericred.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>Task of ApiResponse (StateNetworkSizeResponse)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <StateNetworkSizeResponse> > SearchNetworkSizesAsyncWithHttpInfo(StateNetworkSizeRequest body)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling NetworkSizesApi->SearchNetworkSizes");
            }

            var    localVarPath         = "/network_sizes/search";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new Dictionary <String, String>();
            var    localVarHeaderParams = new Dictionary <String, String>(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"
            };
            String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            // set "format" to json by default
            // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json
            localVarPathParams.Add("format", "json");
            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }

            // authentication (Vericred-Api-Key) required
            if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("Vericred-Api-Key")))
            {
                localVarHeaderParams["Vericred-Api-Key"] = Configuration.GetApiKeyWithPrefix("Vericred-Api-Key");
            }

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

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <StateNetworkSizeResponse>(localVarStatusCode,
                                                              localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                              (StateNetworkSizeResponse)Configuration.ApiClient.Deserialize(localVarResponse, typeof(StateNetworkSizeResponse))));
        }
Exemplo n.º 3
0
        /// <summary>
        /// Network Sizes The number of in-network Providers for each network/state combination provided. This data is recalculated nightly.
        /// </summary>
        /// <exception cref="IO.Vericred.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <returns>StateNetworkSizeResponse</returns>
        public StateNetworkSizeResponse SearchNetworkSizes(StateNetworkSizeRequest body)
        {
            ApiResponse <StateNetworkSizeResponse> localVarResponse = SearchNetworkSizesWithHttpInfo(body);

            return(localVarResponse.Data);
        }