Struct google_people1::ContactGroup[][src]

pub struct ContactGroup {
    pub group_type: Option<String>,
    pub formatted_name: Option<String>,
    pub name: Option<String>,
    pub member_resource_names: Option<Vec<String>>,
    pub member_count: Option<i32>,
    pub etag: Option<String>,
    pub resource_name: Option<String>,
    pub metadata: Option<ContactGroupMetadata>,
}

A contact group.

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 read-only contact group type.

The read-only name translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale for system groups names. Group names set by the owner are the same as name.

The contact group name set by the group owner or a system provided name for system groups.

The list of contact person resource names that are members of the contact group. The field is not populated for LIST requests and can only be updated through the ModifyContactGroupMembers.

The total number of contacts in the group irrespective of max members in specified in the request.

The HTTP entity tag of the resource. Used for web cache validation.

The resource name for the contact group, assigned by the server. An ASCII string, in the form of contactGroups/contact_group_id.

Metadata about the contact group.

Trait Implementations

impl Default for ContactGroup
[src]

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

impl Clone for ContactGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ContactGroup
[src]

Formats the value using the given formatter. Read more

impl Resource for ContactGroup
[src]

impl ResponseResult for ContactGroup
[src]

Auto Trait Implementations