Struct google_people1::PersonMetadata[][src]

pub struct PersonMetadata {
    pub previous_resource_names: Option<Vec<String>>,
    pub sources: Option<Vec<Source>>,
    pub linked_people_resource_names: Option<Vec<String>>,
    pub deleted: Option<bool>,
    pub object_type: Option<String>,
}

The read-only metadata about a person.

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

Fields

Any former resource names this person has had. Populated only for connections.list requests that include a sync token.

The resource name may change when adding or removing fields that link a contact and profile such as a verified email, verified phone number, or profile URL.

The sources of data for the person.

Resource names of people linked to this resource.

True if the person resource has been deleted. Populated only for connections.list requests that include a sync token.

DEPRECATED (Please use person.metadata.sources.profileMetadata.objectType instead)

The type of the person object.

Trait Implementations

impl Default for PersonMetadata
[src]

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

impl Clone for PersonMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersonMetadata
[src]

Formats the value using the given formatter. Read more

impl Part for PersonMetadata
[src]

Auto Trait Implementations