Happy Sunday everyone! I'm looking for a way to automatically restrict shared links on a folder to only collaborators via the Box API. For reference, here's the setting I'm talking about as presented through the UI:

Looking at the documentation, folders seem to have a property called `allowed_shared_link_access_levels`, but when I attempt to modify this via the `update_info` method in the Python SDK, it doesn't seem to make the change. Code excerpt below:
auth = boxsdk.JWTAuth.from_settings_file('authfile')
client = boxsdk.Client(auth)
folder = client.folder(folder_id='68281051900').get()
update = folder.update_info({
'allowed_shared_link_access_levels': ['collaborators']
})
Can anyone provide insight as to what I'm doing wrong here? Is this not the correct property to attempt to update? Thanks much in advance! 😄
