Struct google_vault1::AddHeldAccountsRequest[][src]

pub struct AddHeldAccountsRequest {
    pub account_ids: Option<Vec<String>>,
    pub emails: Option<Vec<String>>,
}

Add a list of accounts to a hold.

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

Account ids to identify which accounts to add. Only account_ids or only emails should be specified, but not both.

Emails to identify which accounts to add. Only emails or only account_ids should be specified, but not both.

Trait Implementations

impl Default for AddHeldAccountsRequest
[src]

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

impl Clone for AddHeldAccountsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AddHeldAccountsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for AddHeldAccountsRequest
[src]

Auto Trait Implementations