|  Developer
Updated on May 17, 2022

update_item_value_with_min_max()

  • Update a specific value in specific range for a specified item (item is specified by id).
Edit
  • params: item_id (string), value (it depends on a value type of a item), value_min, value_max.
  • return: none.
Edit
				
					require "core"

item_id = "1234abcd"
item_dictionary_id = "4"
value = {
    userCode = "3141",
    userName = "Ivan"
}

core.update_item_dictionary_value( item_id, item_dictionary_id, value )