Struct google_vault1::Query[][src]

pub struct Query {
    pub terms: Option<String>,
    pub team_drive_info: Option<TeamDriveInfo>,
    pub mail_options: Option<MailOptions>,
    pub search_method: Option<String>,
    pub hangouts_chat_info: Option<HangoutsChatInfo>,
    pub account_info: Option<AccountInfo>,
    pub drive_options: Option<DriveOptions>,
    pub start_time: Option<String>,
    pub org_unit_info: Option<OrgUnitInfo>,
    pub time_zone: Option<String>,
    pub corpus: Option<String>,
    pub end_time: Option<String>,
    pub data_scope: Option<String>,
    pub hangouts_chat_options: Option<HangoutsChatOptions>,
}

A query definition relevant for search & export.

This type is not used in any activity, and only used as part of another schema.

Fields

The corpus-specific search operators used to generate search results.

When 'TEAM_DRIVE' is chosen as search method, team_drive_info needs to be specified.

For mail search, specify more options in this field.

The search method to use.

When 'ROOM' is chosen as search method, hangout_chats_info needs to be specified. (read-only)

When 'ACCOUNT' is chosen as search method, account_info needs to be specified.

For Drive search, specify more options in this field.

The start time range for the search query. These timestamps are in GMT and rounded down to the start of the given date.

When 'ORG_UNIT' is chosen as as search method, org_unit_info needs to be specified.

The time zone name. It should be an IANA TZ name, such as "America/Los_Angeles". For more information, see Time Zone.

The corpus to search.

The end time range for the search query. These timestamps are in GMT and rounded down to the start of the given date.

The data source to search from.

For hangouts chat search, specify more options in this field. (read-only)

Trait Implementations

impl Default for Query
[src]

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

impl Clone for Query
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Query
[src]

Formats the value using the given formatter. Read more

impl Part for Query
[src]

Auto Trait Implementations

impl Send for Query

impl Sync for Query