This method overwrites the data on the server with the key-value pairs sent from the client (the data on the server will be lost).
The data will be overwritten unconditionally regardless of if the data on the server is updated by other clients.
Here is the sample code:
This is what is happening in the sample code:
Prepare a KiiObject to update. In this sample code, we are creating a KiiObject with its URI (Replace the URI in the code with the real one when you are running the code).
Add key-value pairs with the set() method and remove a key-value pair with the remove() method. Only the key-value pairs set here will be in the KiiOject after the updating. If you need to do so, you can execute the refresh() method beforehand to get all key-value pairs in the server (See Getting a KiiObject for the implementation example).
Execute the saveAllFields() method to update the KiiObject. By setting the argument to true, we are disabling the overwrite check; the update will be made unconditionally.