lib/purecloud/api/geolocation_api.rb in purecloud-0.44.1 vs lib/purecloud/api/geolocation_api.rb in purecloud-0.45.1

- old
+ new

@@ -144,28 +144,31 @@ return data, status_code, headers end # Patch a organization's GeolocationSettings # + # @param body Geolocation settings # @param [Hash] opts the optional parameters - # @option opts [GeolocationSettings] :body # @return [GeolocationSettings] - def patch_settings(opts = {}) - data, status_code, headers = patch_settings_with_http_info(opts) + def patch_settings(body, opts = {}) + data, status_code, headers = patch_settings_with_http_info(body, opts) return data end # Patch a organization&#39;s GeolocationSettings # + # @param body Geolocation settings # @param [Hash] opts the optional parameters - # @option opts [GeolocationSettings] :body # @return [Array<(GeolocationSettings, Fixnum, Hash)>] GeolocationSettings data, response status code and response headers - def patch_settings_with_http_info(opts = {}) + def patch_settings_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: GeolocationApi#patch_settings ..." end + # verify the required parameter 'body' is set + fail "Missing the required parameter 'body' when calling patch_settings" if body.nil? + # resource path local_var_path = "/api/v2/geolocations/settings".sub('{format}','json') # query parameters query_params = {} @@ -183,11 +186,11 @@ # form parameters form_params = {} # http body (model) - post_body = @api_client.object_to_http_body(opts[:'body']) + post_body = @api_client.object_to_http_body(body) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, @@ -203,36 +206,39 @@ # Patch a user's Geolocation # The geolocation object can be patched one of three ways. Option 1: Set the 'primary' property to true. This will set the client as the user's primary geolocation source. Option 2: Provide the 'latitude' and 'longitude' values. This will enqueue an asynchronous update of the 'city', 'region', and 'country', generating a notification. A subsequent GET operation will include the new values for 'city', 'region' and 'country'. Option 3: Provide the 'city', 'region', 'country' values. Option 1 can be combined with Option 2 or Option 3. For example, update the client as primary and provide latitude and longitude values. # @param user_id user Id # @param client_id client Id + # @param body Geolocation # @param [Hash] opts the optional parameters - # @option opts [Geolocation] :body # @return [Geolocation] - def patch_user_id_geolocations_client_id(user_id, client_id, opts = {}) - data, status_code, headers = patch_user_id_geolocations_client_id_with_http_info(user_id, client_id, opts) + def patch_user_id_geolocations_client_id(user_id, client_id, body, opts = {}) + data, status_code, headers = patch_user_id_geolocations_client_id_with_http_info(user_id, client_id, body, opts) return data end # Patch a user&#39;s Geolocation # The geolocation object can be patched one of three ways. Option 1: Set the &#39;primary&#39; property to true. This will set the client as the user&#39;s primary geolocation source. Option 2: Provide the &#39;latitude&#39; and &#39;longitude&#39; values. This will enqueue an asynchronous update of the &#39;city&#39;, &#39;region&#39;, and &#39;country&#39;, generating a notification. A subsequent GET operation will include the new values for &#39;city&#39;, &#39;region&#39; and &#39;country&#39;. Option 3: Provide the &#39;city&#39;, &#39;region&#39;, &#39;country&#39; values. Option 1 can be combined with Option 2 or Option 3. For example, update the client as primary and provide latitude and longitude values. # @param user_id user Id # @param client_id client Id + # @param body Geolocation # @param [Hash] opts the optional parameters - # @option opts [Geolocation] :body # @return [Array<(Geolocation, Fixnum, Hash)>] Geolocation data, response status code and response headers - def patch_user_id_geolocations_client_id_with_http_info(user_id, client_id, opts = {}) + def patch_user_id_geolocations_client_id_with_http_info(user_id, client_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: GeolocationApi#patch_user_id_geolocations_client_id ..." end # verify the required parameter 'user_id' is set fail "Missing the required parameter 'user_id' when calling patch_user_id_geolocations_client_id" if user_id.nil? # verify the required parameter 'client_id' is set fail "Missing the required parameter 'client_id' when calling patch_user_id_geolocations_client_id" if client_id.nil? + # verify the required parameter 'body' is set + fail "Missing the required parameter 'body' when calling patch_user_id_geolocations_client_id" if body.nil? + # resource path local_var_path = "/api/v2/users/{userId}/geolocations/{clientId}".sub('{format}','json').sub('{' + 'userId' + '}', user_id.to_s).sub('{' + 'clientId' + '}', client_id.to_s) # query parameters query_params = {} @@ -250,10 +256,10 @@ # form parameters form_params = {} # http body (model) - post_body = @api_client.object_to_http_body(opts[:'body']) + post_body = @api_client.object_to_http_body(body) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params,