private static final String keyAttributeUpdate = "2";
protected UpdateAttributesJsoImpl() {
}
public static UpdateAttributesJsoImpl create() {
UpdateAttributesJsoImpl instance = (UpdateAttributesJsoImpl) JsonMessage.createJsonMessage();
// Force all lists to start with an empty list rather than no property for
// the list. This is so that the native JS equality works, since (obviously)
// {} != {"foo": []} while in the context of messages they should be.
instance.clearAttributeUpdate();
return instance;
}