Struct google_people1::ListContactGroupsResponse[][src]

pub struct ListContactGroupsResponse {
    pub next_page_token: Option<String>,
    pub contact_groups: Option<Vec<ContactGroup>>,
    pub next_sync_token: Option<String>,
    pub total_items: Option<i32>,
}

The response to a list contact groups request.

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

The token that can be used to retrieve the next page of results.

The list of contact groups. Members of the contact groups are not populated.

The token that can be used to retrieve changes since the last request.

The total number of items in the list without pagination.

Trait Implementations

impl Default for ListContactGroupsResponse
[src]

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

impl Clone for ListContactGroupsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListContactGroupsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListContactGroupsResponse
[src]

Auto Trait Implementations