/// <summary>
        /// Updates the account settings for an account. Updates the account settings for the specified account.
        /// </summary>
 	    ///<param name="accountId">The external account number (int) or account ID Guid.</param> <param name="accountSettingsInformation">TBD Description</param>
		/// <returns>7Task of void</returns>
        public async System.Threading.Tasks.Task UpdateSettingsAsync (string accountId, AccountSettingsInformation accountSettingsInformation)
        {
             await UpdateSettingsAsyncWithHttpInfo(accountId, accountSettingsInformation);

        }
        /// <summary>
        /// Updates the account settings for an account. Updates the account settings for the specified account.
        /// </summary>
	    ///<param name="accountId">The external account number (int) or account ID Guid.</param> <param name="accountSettingsInformation">TBD Description</param>
		/// <returns>8Task of ApiResponse</returns>
        public async System.Threading.Tasks.Task<ApiResponse<Object>> UpdateSettingsAsyncWithHttpInfo (string accountId, AccountSettingsInformation accountSettingsInformation)
        {
            // verify the required parameter 'accountId' is set
            if (accountId == null) throw new ApiException(400, "Missing required parameter 'accountId' when calling UpdateSettings");
            
    
            var path_ = "/v2/accounts/{accountId}/settings";
    
            var pathParams = new Dictionary<String, String>();
            var queryParams = new Dictionary<String, String>();
            var headerParams = new Dictionary<String, String>();
            var formParams = new Dictionary<String, String>();
            var fileParams = new Dictionary<String, FileParameter>();
            String postBody = null;

            // to determine the Accept header
            String[] http_header_accepts = new String[] {
                "application/json"
            };
            String http_header_accept = Configuration.ApiClient.SelectHeaderAccept(http_header_accepts);
            if (http_header_accept != null)
                headerParams.Add("Accept", Configuration.ApiClient.SelectHeaderAccept(http_header_accepts));

            // set "format" to json by default
            // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json
            pathParams.Add("format", "json");
            if (accountId != null) pathParams.Add("accountId", Configuration.ApiClient.ParameterToString(accountId)); // path parameter
            

						
			
			

            
            
            postBody = Configuration.ApiClient.Serialize(accountSettingsInformation); // http body (model) parameter
            

            

            // make the HTTP request
            IRestResponse response = (IRestResponse) await Configuration.ApiClient.CallApiAsync(path_, Method.PUT, queryParams, postBody, headerParams, formParams, fileParams, pathParams);

            int statusCode = (int) response.StatusCode;
 
            if (statusCode >= 400)
                throw new ApiException (statusCode, "Error calling UpdateSettings: " + response.Content, response.Content);
            else if (statusCode == 0)
                throw new ApiException (statusCode, "Error calling UpdateSettings: " + response.ErrorMessage, response.ErrorMessage);

            
            return new ApiResponse<Object>(statusCode,
                response.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                null);
        }
        /// <summary>
        /// Updates the account settings for an account. Updates the account settings for the specified account.
        /// </summary>
 	    ///<param name="accountId">The external account number (int) or account ID Guid.</param> <param name="accountSettingsInformation">TBD Description</param>
		/// <returns>5</returns>
        public void UpdateSettings (string accountId, AccountSettingsInformation accountSettingsInformation)
        {
             UpdateSettingsWithHttpInfo(accountId, accountSettingsInformation);
        }