You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change allows for child objects of JSON objects to be changed and
have those changes tracked by the parent. For example:
BoxSharedLink sharedLink = file.createSharedLink(...);
sharedLink.getPermissions().setAccess(BoxSharedLink.Access.OPEN);
BoxFile.Info info = file.new Info();
info.setSharedLink(sharedLink);
file.updateInfo(info);
The new permissions will be correctly sent to the API even though
they're a child object and weren't explicitly set with
`setPermissions()`.
0 commit comments