### Issue Description I want to be able to set custom objectId when saving new parse objects. ### Steps to reproduce ```js let obj = new Parse.Object('Country'); obj.set('objectId', 'vr'); obj.set('name', 'Virtual Reality'); #### Expected Results A parse with the objectId vr.