class Google::Apis::VaultV1::AddMatterPermissionsRequest

Add an account with the permission specified. The role cannot be owner. If an account already has a role in the matter, the existing role is overwritten.

Attributes

cc_me[RW]

Only relevant if sendEmails is true. To CC the requestor in the email message, set to true. To not CC requestor, set to false. Corresponds to the JSON property `ccMe` @return [Boolean]

cc_me?[RW]

Only relevant if sendEmails is true. To CC the requestor in the email message, set to true. To not CC requestor, set to false. Corresponds to the JSON property `ccMe` @return [Boolean]

matter_permission[RW]

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. Corresponds to the JSON property `matterPermission` @return [Google::Apis::VaultV1::MatterPermission]

send_emails[RW]

To send a notification email to the added account, set to true. To not send a notification email, set to false. Corresponds to the JSON property `sendEmails` @return [Boolean]

send_emails?[RW]

To send a notification email to the added account, set to true. To not send a notification email, set to false. Corresponds to the JSON property `sendEmails` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 201
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 206
def update!(**args)
  @cc_me = args[:cc_me] if args.key?(:cc_me)
  @matter_permission = args[:matter_permission] if args.key?(:matter_permission)
  @send_emails = args[:send_emails] if args.key?(:send_emails)
end