Add/Modify SFHub Dictionary Items
The syntax is the same as the create. The value is appended.
$$myDictionary[key] = value
If the specified key string does not exist in the dictionary, then a new pair (key, value) will be added in the dictionary otherwise, the value associated to the key will be changed. The value data type must be consistent with the type of dictionary.
Value
The value to add. Value must be of the same type as the Dictionary.
Example:
$$myDictionary['HVYCRUDE'] = 20
This will add or replace HVYCRUDE with the value 20.