update_multiple(data, triggers=True)
Update for several sobjects with different data in one function call. The
data structure contains all the information needed to update and is
formated as follows:
data = {
search_key1: { column1: value1, column2: value2 }
search_key2: { column1: value1, column2: value2 }
}
data - data structure containing update information for all
sobjects
data - a dictionary of name/value pairs which will be used to update
the sobject defined by the search_key
Note: this can also be an array. Each data dictionary element in
the array will be applied to the corresponding search key
triggers - boolean to fire trigger on insert
None