JsonObject::set()
Description
JsonObject::set() copies the content of an object to the object pointed by the JsonObject.
If the JsonObject is null/unbound, this function does nothing.
Signatures
bool set(JsonObjectConst obj) const;
Arguments
obj: a JsonObjectConst pointing to the object to copy.
Return value
JsonObject::set() returns a bool that tells whether the operation was successful or not:
trueif the operation is successfulfalseif there was not enough room in theJsonDocument.