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 title: Option<String>,
    pub type_: Option<String>,
    pub symbol: Option<String>,
    pub current: Option<bool>,
    pub job_description: Option<String>,
    pub location: Option<String>,
    pub department: Option<String>,
    pub start_date: Option<Date>,
    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 person's job title at the organization.

The type of the organization. The type can be custom or predefined. Possible values include, but are not limited to, the following:

  • work
  • school

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

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 start date when the person joined the organization.

The phonetic name of the organization.

Metadata about the organization.

Trait Implementations

impl Default for Organization
[src]

[src]

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

impl Clone for Organization
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Organization
[src]

[src]

Formats the value using the given formatter.

impl Part for Organization
[src]