class Google::Apis::VaultV1::MatterPermission

Users can be matter owners or collaborators. Each matter has only one owner. All others users who can access the matter are collaborators. When an account is purged, its corresponding MatterPermission resources cease to exist.

Attributes

account_id[RW]

The account ID, as provided by the [Admin SDK](developers.google.com/ admin-sdk/). Corresponds to the JSON property `accountId` @return [String]

role[RW]

The user's role for the matter. Corresponds to the JSON property `role` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 1388
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vault_v1/classes.rb, line 1393
def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @role = args[:role] if args.key?(:role)
end