Struct google_people1::ModifyContactGroupMembersRequest[][src]

pub struct ModifyContactGroupMembersRequest {
    pub resource_names_to_remove: Option<Vec<String>>,
    pub resource_names_to_add: Option<Vec<String>>,
}

A request to modify an existing contact group's members. Contacts can be removed from any group but they can only be added to a user group or myContacts or starred system groups.

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 resource names of the contact people to remove in the form of in the form of people/person_id.

The resource names of the contact people to add in the form of in the form people/person_id.

Trait Implementations

impl Default for ModifyContactGroupMembersRequest
[src]

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

impl Clone for ModifyContactGroupMembersRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ModifyContactGroupMembersRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ModifyContactGroupMembersRequest
[src]

Auto Trait Implementations