/// <summary>
        /// Random &lt;p align&#x3D;\&quot;right\&quot;&gt;status: &lt;strong&gt;stable&lt;/strong&gt;&lt;/p&gt;  Select coins to cover the given set of payments.  Uses the &lt;a href&#x3D;\&quot;https://iohk.io/blog/self-organisation-in-coin-selection/\&quot;&gt; Random-Improve coin selection algorithm&lt;/a&gt;.  &lt;b&gt;Note: &lt;/b&gt; Not supported for Byron random wallets.
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <param name="walletId"></param>
        /// <returns>Task of InlineResponse2008</returns>
        public async System.Threading.Tasks.Task <InlineResponse2008> ByronSelectCoinsAsync(Body19 body, string walletId)
        {
            ApiResponse <InlineResponse2008> localVarResponse = await ByronSelectCoinsAsyncWithHttpInfo(body, walletId);

            return(localVarResponse.Data);
        }
        /// <summary>
        /// Random &lt;p align&#x3D;\&quot;right\&quot;&gt;status: &lt;strong&gt;stable&lt;/strong&gt;&lt;/p&gt;  Select coins to cover the given set of payments.  Uses the &lt;a href&#x3D;\&quot;https://iohk.io/blog/self-organisation-in-coin-selection/\&quot;&gt; Random-Improve coin selection algorithm&lt;/a&gt;.  &lt;b&gt;Note: &lt;/b&gt; Not supported for Byron random wallets.
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <param name="walletId"></param>
        /// <returns>Task of ApiResponse (InlineResponse2008)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <InlineResponse2008> > ByronSelectCoinsAsyncWithHttpInfo(Body19 body, string walletId)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling ByronCoinSelectionsApi->ByronSelectCoins");
            }
            // verify the required parameter 'walletId' is set
            if (walletId == null)
            {
                throw new ApiException(400, "Missing required parameter 'walletId' when calling ByronCoinSelectionsApi->ByronSelectCoins");
            }

            var    localVarPath         = "/byron-wallets/{walletId}/coin-selections/random";
            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"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            if (walletId != null)
            {
                localVarPathParams.Add("walletId", this.Configuration.ApiClient.ParameterToString(walletId));                   // path parameter
            }
            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }

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

            return(new ApiResponse <InlineResponse2008>(localVarStatusCode,
                                                        localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                                        (InlineResponse2008)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(InlineResponse2008))));
        }
        /// <summary>
        /// Random &lt;p align&#x3D;\&quot;right\&quot;&gt;status: &lt;strong&gt;stable&lt;/strong&gt;&lt;/p&gt;  Select coins to cover the given set of payments.  Uses the &lt;a href&#x3D;\&quot;https://iohk.io/blog/self-organisation-in-coin-selection/\&quot;&gt; Random-Improve coin selection algorithm&lt;/a&gt;.  &lt;b&gt;Note: &lt;/b&gt; Not supported for Byron random wallets.
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body"></param>
        /// <param name="walletId"></param>
        /// <returns>InlineResponse2008</returns>
        public InlineResponse2008 ByronSelectCoins(Body19 body, string walletId)
        {
            ApiResponse <InlineResponse2008> localVarResponse = ByronSelectCoinsWithHttpInfo(body, walletId);

            return(localVarResponse.Data);
        }