removeJsonAttribute method
- String name,
- String instanceId
Removes a JSON attribute.
@param name The attribute name. @param instanceId The instance ID.
Implementation
void removeJsonAttribute(String name, String instanceId) {
operations.add({
ATTRIBUTE_OPERATION_TYPE: ATTRIBUTE_OPERATION_REMOVE,
ATTRIBUTE_OPERATION_KEY: name,
ATTRIBUTE_OPERATION_INSTANCE_ID: instanceId
});
}