Struct google_vault1::AddMatterPermissionsRequest[][src]

pub struct AddMatterPermissionsRequest {
    pub cc_me: Option<bool>,
    pub send_emails: Option<bool>,
    pub matter_permission: Option<MatterPermission>,
}

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

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Only relevant if send_emails is true. True to CC requestor in the email message. False to not CC requestor.

True to send notification email to the added account. False to not send notification email.

The MatterPermission to add.

Trait Implementations

impl Default for AddMatterPermissionsRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for AddMatterPermissionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AddMatterPermissionsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for AddMatterPermissionsRequest
[src]

Auto Trait Implementations