Struct google_plus1::PersonOrganizations[][src]

pub struct PersonOrganizations {
    pub start_date: Option<String>,
    pub end_date: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub primary: Option<bool>,
    pub location: Option<String>,
    pub department: Option<String>,
    pub type_: Option<String>,
    pub name: Option<String>,
}

A list of current or past organizations with which this person is associated.

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

Fields

The date that the person joined this organization.

The date that the person left this organization.

A short description of the person's role in this organization. Deprecated.

The person's job title or role within the organization.

If "true", indicates this organization is the person's primary one, which is typically interpreted as the current one.

The location of this organization. Deprecated.

The department within the organization. Deprecated.

The type of organization. Possible values include, but are not limited to, the following values:

  • "work" - Work.
  • "school" - School.

The name of the organization.

Trait Implementations

impl Default for PersonOrganizations
[src]

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

impl Clone for PersonOrganizations
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersonOrganizations
[src]

Formats the value using the given formatter. Read more

impl NestedType for PersonOrganizations
[src]

impl Part for PersonOrganizations
[src]

Auto Trait Implementations