Struct google_people1::Organization[][src]

pub struct Organization {
    pub formatted_type: Option<String>,
    pub domain: Option<String>,
    pub end_date: Option<Date>,
    pub name: Option<String>,
    pub start_date: Option<Date>,
    pub symbol: Option<String>,
    pub title: Option<String>,
    pub current: Option<bool>,
    pub job_description: Option<String>,
    pub location: Option<String>,
    pub department: Option<String>,
    pub type_: Option<String>,
    pub phonetic_name: Option<String>,
    pub metadata: Option<FieldMetadata>,
}

A person's past or current organization. Overlapping date ranges are permitted.

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

Fields

The read-only type of the organization translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale.

The domain name associated with the organization; for example, google.com.

The end date when the person left the organization.

The name of the organization.

The start date when the person joined the organization.

The symbol associated with the organization; for example, a stock ticker symbol, abbreviation, or acronym.

The person's job title at the organization.

True if the organization is the person's current organization; false if the organization is a past organization.

The person's job description at the organization.

The location of the organization office the person works at.

The person's department at the organization.

The type of the organization. The type can be custom or one of these predefined values:

  • work
  • school

The phonetic name of the organization.

Metadata about the organization.

Trait Implementations

impl Default for Organization
[src]

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

impl Clone for Organization
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Organization
[src]

Formats the value using the given formatter. Read more

impl Part for Organization
[src]

Auto Trait Implementations