class DropboxApi::Metadata::MemberPermissionList

This represents a collection of permissions on allowed on a shared file or folder.

This is an example of a serialized {MemberActionList}: “`json [{

"action": {
  ".tag": "remove"
},
"allow": false,
"reason": {
  ".tag": "target_is_self"
}

}, {

"action": {
  ".tag": "make_owner"
},
"allow": false,
"reason": {
  ".tag": "target_is_self"
}

}] “`

Public Class Methods

new(list) click to toggle source
Calls superclass method
# File lib/dropbox_api/metadata/member_permission_list.rb, line 27
def initialize(list)
  super(list.map { |i| DropboxApi::Metadata::MemberPermission.new i })
end