/// <summary>
        /// Save new marketplace settings for a channel catalog Allow you to configure your marketplace settings.  Partial update accepted. 
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="channelCatalogId">Channel Catalog Id to query</param>
        /// <param name="model">Settings to save</param>
        /// <returns>Task of void</returns>
        public async System.Threading.Tasks.Task SetChannelCatalogMarketplaceSettingsAsync (string channelCatalogId, SetChannelCatalogMarketplaceSettingsRequest model)
        {
             await SetChannelCatalogMarketplaceSettingsAsyncWithHttpInfo(channelCatalogId, model);

        }
        /// <summary>
        /// Save new marketplace settings for a channel catalog Allow you to configure your marketplace settings.  Partial update accepted. 
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="channelCatalogId">Channel Catalog Id to query</param>
        /// <param name="model">Settings to save</param>
        /// <returns>Task of ApiResponse</returns>
        public async System.Threading.Tasks.Task<ApiResponse<Object>> SetChannelCatalogMarketplaceSettingsAsyncWithHttpInfo (string channelCatalogId, SetChannelCatalogMarketplaceSettingsRequest model)
        {
            // verify the required parameter 'channelCatalogId' is set
            if (channelCatalogId == null)
                throw new ApiException(400, "Missing required parameter 'channelCatalogId' when calling MarketplacesChannelCatalogsSettingsApi->SetChannelCatalogMarketplaceSettings");
            // verify the required parameter 'model' is set
            if (model == null)
                throw new ApiException(400, "Missing required parameter 'model' when calling MarketplacesChannelCatalogsSettingsApi->SetChannelCatalogMarketplaceSettings");

            var localVarPath = "/user/marketplaces/channelcatalogs/{channelCatalogId}/settings";
            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 (channelCatalogId != null) localVarPathParams.Add("channelCatalogId", Configuration.ApiClient.ParameterToString(channelCatalogId)); // path parameter
            if (model != null && model.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(model); // http body (model) parameter
            }
            else
            {
                localVarPostBody = model; // byte array
            }

            // authentication (api_key) required
            if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("Ocp-Apim-Subscription-Key")))
            {
                localVarHeaderParams["Ocp-Apim-Subscription-Key"] = Configuration.GetApiKeyWithPrefix("Ocp-Apim-Subscription-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("SetChannelCatalogMarketplaceSettings", localVarResponse);
                if (exception != null) throw exception;
            }

            
            return new ApiResponse<Object>(localVarStatusCode,
                localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                null);
        }
 /// <summary>
 /// Save new marketplace settings for a channel catalog Allow you to configure your marketplace settings.  Partial update accepted. 
 /// </summary>
 /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="channelCatalogId">Channel Catalog Id to query</param>
 /// <param name="model">Settings to save</param>
 /// <returns></returns>
 public void SetChannelCatalogMarketplaceSettings (string channelCatalogId, SetChannelCatalogMarketplaceSettingsRequest model)
 {
      SetChannelCatalogMarketplaceSettingsWithHttpInfo(channelCatalogId, model);
 }