Class: KoronaClient::InventoriesApi
- Inherits:
-
Object
- Object
- KoronaClient::InventoriesApi
- Defined in:
- lib/korona_client/api/inventories_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#add_inventories(korona_account_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>
adds a batch of new inventories.
-
#add_inventories_with_http_info(korona_account_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>
adds a batch of new inventories.
-
#add_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>
adds inventory list items.
-
#add_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>
adds inventory list items.
-
#delete_inventory(korona_account_id, inventory_id, opts = {}) ⇒ nil
deletes the single inventory (only allowed if hasBookedReceipts=false).
-
#delete_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ nil
deletes the single inventory list item.
-
#delete_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
deletes the single inventory list item.
-
#delete_inventory_with_http_info(korona_account_id, inventory_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
deletes the single inventory (only allowed if hasBookedReceipts=false).
-
#get_inventories(korona_account_id, opts = {}) ⇒ ResultListInventory
lists all inventories.
-
#get_inventories_with_http_info(korona_account_id, opts = {}) ⇒ Array<(ResultListInventory, Fixnum, Hash)>
lists all inventories.
-
#get_inventory(korona_account_id, inventory_id, opts = {}) ⇒ Inventory
returns the single inventory.
-
#get_inventory_inventory_list(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ InventoryList
returns the single inventory list.
-
#get_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ InventoryListItem
returns the single inventory list item.
-
#get_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ Array<(InventoryListItem, Fixnum, Hash)>
returns the single inventory list item.
-
#get_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ ResultListInventoryListItem
lists all inventory list items.
-
#get_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ Array<(ResultListInventoryListItem, Fixnum, Hash)>
lists all inventory list items.
-
#get_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ Array<(InventoryList, Fixnum, Hash)>
returns the single inventory list.
-
#get_inventory_inventory_lists(korona_account_id, inventory_id, opts = {}) ⇒ ResultListInventoryList
lists all inventory lists.
-
#get_inventory_inventory_lists_with_http_info(korona_account_id, inventory_id, opts = {}) ⇒ Array<(ResultListInventoryList, Fixnum, Hash)>
lists all inventory lists.
-
#get_inventory_with_http_info(korona_account_id, inventory_id, opts = {}) ⇒ Array<(Inventory, Fixnum, Hash)>
returns the single inventory.
-
#initialize(api_client = ApiClient.default) ⇒ InventoriesApi
constructor
A new instance of InventoriesApi.
-
#update_inventory(korona_account_id, inventory_id, body, opts = {}) ⇒ nil
updates the single inventory.
-
#update_inventory_inventory_list(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ nil
updates the single inventory list.
-
#update_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts = {}) ⇒ nil
updates the single inventory list item.
-
#update_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
updates the single inventory list item.
-
#update_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>
updates inventory list items (property [product] required)).
-
#update_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>
updates inventory list items (property [product] required)).
-
#update_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
updates the single inventory list.
-
#update_inventory_with_http_info(korona_account_id, inventory_id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
updates the single inventory.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ InventoriesApi
Returns a new instance of InventoriesApi.
19 20 21 |
# File 'lib/korona_client/api/inventories_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/korona_client/api/inventories_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#add_inventories(korona_account_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>
adds a batch of new inventories
28 29 30 31 |
# File 'lib/korona_client/api/inventories_api.rb', line 28 def add_inventories(korona_account_id, body, opts = {}) data, _status_code, _headers = add_inventories_with_http_info(korona_account_id, body, opts) data end |
#add_inventories_with_http_info(korona_account_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>
adds a batch of new inventories
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/korona_client/api/inventories_api.rb', line 39 def add_inventories_with_http_info(korona_account_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.add_inventories ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.add_inventories" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling InventoriesApi.add_inventories" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Array<AddOrUpdateResult>') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#add_inventories\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#add_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>
adds inventory list items
90 91 92 93 |
# File 'lib/korona_client/api/inventories_api.rb', line 90 def add_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) data, _status_code, _headers = add_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts) data end |
#add_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>
adds inventory list items
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'lib/korona_client/api/inventories_api.rb', line 103 def add_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.add_inventory_inventory_list_items ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.add_inventory_inventory_list_items" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.add_inventory_inventory_list_items" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.add_inventory_inventory_list_items" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling InventoriesApi.add_inventory_inventory_list_items" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}/items'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Array<AddOrUpdateResult>') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#add_inventory_inventory_list_items\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_inventory(korona_account_id, inventory_id, opts = {}) ⇒ nil
deletes the single inventory (only allowed if hasBookedReceipts=false)
160 161 162 163 |
# File 'lib/korona_client/api/inventories_api.rb', line 160 def delete_inventory(korona_account_id, inventory_id, opts = {}) delete_inventory_with_http_info(korona_account_id, inventory_id, opts) nil end |
#delete_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ nil
deletes the single inventory list item
221 222 223 224 |
# File 'lib/korona_client/api/inventories_api.rb', line 221 def delete_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) delete_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts) nil end |
#delete_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
deletes the single inventory list item
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
# File 'lib/korona_client/api/inventories_api.rb', line 234 def delete_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.delete_inventory_inventory_list_item ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.delete_inventory_inventory_list_item" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.delete_inventory_inventory_list_item" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.delete_inventory_inventory_list_item" end # verify the required parameter 'product_id' is set if @api_client.config.client_side_validation && product_id.nil? fail ArgumentError, "Missing the required parameter 'product_id' when calling InventoriesApi.delete_inventory_inventory_list_item" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}/items/{productId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s).sub('{' + 'productId' + '}', product_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#delete_inventory_inventory_list_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_inventory_with_http_info(korona_account_id, inventory_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
deletes the single inventory (only allowed if hasBookedReceipts=false)
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/korona_client/api/inventories_api.rb', line 171 def delete_inventory_with_http_info(korona_account_id, inventory_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.delete_inventory ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.delete_inventory" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.delete_inventory" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#delete_inventory\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_inventories(korona_account_id, opts = {}) ⇒ ResultListInventory
lists all inventories
295 296 297 298 |
# File 'lib/korona_client/api/inventories_api.rb', line 295 def get_inventories(korona_account_id, opts = {}) data, _status_code, _headers = get_inventories_with_http_info(korona_account_id, opts) data end |
#get_inventories_with_http_info(korona_account_id, opts = {}) ⇒ Array<(ResultListInventory, Fixnum, Hash)>
lists all inventories
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/korona_client/api/inventories_api.rb', line 311 def get_inventories_with_http_info(korona_account_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.get_inventories ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.get_inventories" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s) # query parameters query_params = {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil? query_params[:'includeDeleted'] = opts[:'include_deleted'] if !opts[:'include_deleted'].nil? query_params[:'number'] = opts[:'number'] if !opts[:'number'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ResultListInventory') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#get_inventories\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_inventory(korona_account_id, inventory_id, opts = {}) ⇒ Inventory
returns the single inventory
362 363 364 365 |
# File 'lib/korona_client/api/inventories_api.rb', line 362 def get_inventory(korona_account_id, inventory_id, opts = {}) data, _status_code, _headers = get_inventory_with_http_info(korona_account_id, inventory_id, opts) data end |
#get_inventory_inventory_list(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ InventoryList
returns the single inventory list
423 424 425 426 |
# File 'lib/korona_client/api/inventories_api.rb', line 423 def get_inventory_inventory_list(korona_account_id, inventory_id, inventory_list_id, opts = {}) data, _status_code, _headers = get_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts) data end |
#get_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ InventoryListItem
returns the single inventory list item
490 491 492 493 |
# File 'lib/korona_client/api/inventories_api.rb', line 490 def get_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) data, _status_code, _headers = get_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts) data end |
#get_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) ⇒ Array<(InventoryListItem, Fixnum, Hash)>
returns the single inventory list item
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 |
# File 'lib/korona_client/api/inventories_api.rb', line 503 def get_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.get_inventory_inventory_list_item ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.get_inventory_inventory_list_item" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.get_inventory_inventory_list_item" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.get_inventory_inventory_list_item" end # verify the required parameter 'product_id' is set if @api_client.config.client_side_validation && product_id.nil? fail ArgumentError, "Missing the required parameter 'product_id' when calling InventoriesApi.get_inventory_inventory_list_item" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}/items/{productId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s).sub('{' + 'productId' + '}', product_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InventoryListItem') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#get_inventory_inventory_list_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ ResultListInventoryListItem
lists all inventory list items
565 566 567 568 |
# File 'lib/korona_client/api/inventories_api.rb', line 565 def get_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, opts = {}) data, _status_code, _headers = get_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts) data end |
#get_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ Array<(ResultListInventoryListItem, Fixnum, Hash)>
lists all inventory list items
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 |
# File 'lib/korona_client/api/inventories_api.rb', line 581 def get_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.get_inventory_inventory_list_items ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.get_inventory_inventory_list_items" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.get_inventory_inventory_list_items" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.get_inventory_inventory_list_items" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}/items'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s) # query parameters query_params = {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ResultListInventoryListItem') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#get_inventory_inventory_list_items\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts = {}) ⇒ Array<(InventoryList, Fixnum, Hash)>
returns the single inventory list
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
# File 'lib/korona_client/api/inventories_api.rb', line 435 def get_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.get_inventory_inventory_list ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.get_inventory_inventory_list" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.get_inventory_inventory_list" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.get_inventory_inventory_list" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InventoryList') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#get_inventory_inventory_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_inventory_inventory_lists(korona_account_id, inventory_id, opts = {}) ⇒ ResultListInventoryList
lists all inventory lists
649 650 651 652 |
# File 'lib/korona_client/api/inventories_api.rb', line 649 def get_inventory_inventory_lists(korona_account_id, inventory_id, opts = {}) data, _status_code, _headers = get_inventory_inventory_lists_with_http_info(korona_account_id, inventory_id, opts) data end |
#get_inventory_inventory_lists_with_http_info(korona_account_id, inventory_id, opts = {}) ⇒ Array<(ResultListInventoryList, Fixnum, Hash)>
lists all inventory lists
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 |
# File 'lib/korona_client/api/inventories_api.rb', line 671 def get_inventory_inventory_lists_with_http_info(korona_account_id, inventory_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.get_inventory_inventory_lists ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.get_inventory_inventory_lists" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.get_inventory_inventory_lists" end if @api_client.config.client_side_validation && opts[:'booking_status'] && !['BOOKED', 'IN_PROGRESS'].include?(opts[:'booking_status']) fail ArgumentError, 'invalid value for "booking_status", must be one of BOOKED, IN_PROGRESS' end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s) # query parameters query_params = {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil? query_params[:'includeDeleted'] = opts[:'include_deleted'] if !opts[:'include_deleted'].nil? query_params[:'minCreateTime'] = opts[:'min_create_time'] if !opts[:'min_create_time'].nil? query_params[:'maxCreateTime'] = opts[:'max_create_time'] if !opts[:'max_create_time'].nil? query_params[:'minBookingTime'] = opts[:'min_booking_time'] if !opts[:'min_booking_time'].nil? query_params[:'maxBookingTime'] = opts[:'max_booking_time'] if !opts[:'max_booking_time'].nil? query_params[:'bookingStatus'] = opts[:'booking_status'] if !opts[:'booking_status'].nil? query_params[:'number'] = opts[:'number'] if !opts[:'number'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ResultListInventoryList') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#get_inventory_inventory_lists\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_inventory_with_http_info(korona_account_id, inventory_id, opts = {}) ⇒ Array<(Inventory, Fixnum, Hash)>
returns the single inventory
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 |
# File 'lib/korona_client/api/inventories_api.rb', line 373 def get_inventory_with_http_info(korona_account_id, inventory_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.get_inventory ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.get_inventory" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.get_inventory" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Inventory') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#get_inventory\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_inventory(korona_account_id, inventory_id, body, opts = {}) ⇒ nil
updates the single inventory
735 736 737 738 |
# File 'lib/korona_client/api/inventories_api.rb', line 735 def update_inventory(korona_account_id, inventory_id, body, opts = {}) update_inventory_with_http_info(korona_account_id, inventory_id, body, opts) nil end |
#update_inventory_inventory_list(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ nil
updates the single inventory list
801 802 803 804 |
# File 'lib/korona_client/api/inventories_api.rb', line 801 def update_inventory_inventory_list(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) update_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts) nil end |
#update_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts = {}) ⇒ nil
updates the single inventory list item
873 874 875 876 |
# File 'lib/korona_client/api/inventories_api.rb', line 873 def update_inventory_inventory_list_item(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts = {}) update_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts) nil end |
#update_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
updates the single inventory list item
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 |
# File 'lib/korona_client/api/inventories_api.rb', line 887 def update_inventory_inventory_list_item_with_http_info(korona_account_id, inventory_id, inventory_list_id, product_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.update_inventory_inventory_list_item ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.update_inventory_inventory_list_item" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.update_inventory_inventory_list_item" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.update_inventory_inventory_list_item" end # verify the required parameter 'product_id' is set if @api_client.config.client_side_validation && product_id.nil? fail ArgumentError, "Missing the required parameter 'product_id' when calling InventoriesApi.update_inventory_inventory_list_item" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling InventoriesApi.update_inventory_inventory_list_item" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}/items/{productId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s).sub('{' + 'productId' + '}', product_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#update_inventory_inventory_list_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>
updates inventory list items (property [product] required))
949 950 951 952 |
# File 'lib/korona_client/api/inventories_api.rb', line 949 def update_inventory_inventory_list_items(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) data, _status_code, _headers = update_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts) data end |
#update_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>
updates inventory list items (property [product] required))
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 |
# File 'lib/korona_client/api/inventories_api.rb', line 962 def update_inventory_inventory_list_items_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.update_inventory_inventory_list_items ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.update_inventory_inventory_list_items" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.update_inventory_inventory_list_items" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.update_inventory_inventory_list_items" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling InventoriesApi.update_inventory_inventory_list_items" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}/items'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Array<AddOrUpdateResult>') if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#update_inventory_inventory_list_items\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
updates the single inventory list
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 |
# File 'lib/korona_client/api/inventories_api.rb', line 814 def update_inventory_inventory_list_with_http_info(korona_account_id, inventory_id, inventory_list_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.update_inventory_inventory_list ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.update_inventory_inventory_list" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.update_inventory_inventory_list" end # verify the required parameter 'inventory_list_id' is set if @api_client.config.client_side_validation && inventory_list_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_list_id' when calling InventoriesApi.update_inventory_inventory_list" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling InventoriesApi.update_inventory_inventory_list" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}/inventoryLists/{inventoryListId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s).sub('{' + 'inventoryListId' + '}', inventory_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#update_inventory_inventory_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_inventory_with_http_info(korona_account_id, inventory_id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
updates the single inventory
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 |
# File 'lib/korona_client/api/inventories_api.rb', line 747 def update_inventory_with_http_info(korona_account_id, inventory_id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: InventoriesApi.update_inventory ...' end # verify the required parameter 'korona_account_id' is set if @api_client.config.client_side_validation && korona_account_id.nil? fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling InventoriesApi.update_inventory" end # verify the required parameter 'inventory_id' is set if @api_client.config.client_side_validation && inventory_id.nil? fail ArgumentError, "Missing the required parameter 'inventory_id' when calling InventoriesApi.update_inventory" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling InventoriesApi.update_inventory" end # resource path local_var_path = '/accounts/{koronaAccountId}/inventories/{inventoryId}'.sub('{' + 'koronaAccountId' + '}', korona_account_id.to_s).sub('{' + 'inventoryId' + '}', inventory_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: InventoriesApi#update_inventory\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |