[][src]Struct google_people1::ContactGroup

pub struct ContactGroup {
    pub formatted_name: Option<String>,
    pub group_type: 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

formatted_name: Option<String>

Output only. The 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.

group_type: Option<String>

Output only. The contact group type.

name: Option<String>

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

member_resource_names: Option<Vec<String>>

Output only. 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.

member_count: Option<i32>

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

etag: Option<String>

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

resource_name: Option<String>

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

metadata: Option<ContactGroupMetadata>

Output only. Metadata about the contact group.

Trait Implementations

impl Clone for ContactGroup[src]

impl Debug for ContactGroup[src]

impl Default for ContactGroup[src]

impl<'de> Deserialize<'de> for ContactGroup[src]

impl Resource for ContactGroup[src]

impl ResponseResult for ContactGroup[src]

impl Serialize for ContactGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any