Show / Hide Table of Contents

Class Person.OrganizationsData

Inheritance
System.Object
Person.OrganizationsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class OrganizationsData

Properties

Department

The department within the organization. Deprecated.

Declaration
[JsonProperty("department")]
public virtual string Department { get; set; }
Property Value
Type Description
System.String

Description

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

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

EndDate

The date that the person left this organization.

Declaration
[JsonProperty("endDate")]
public virtual string EndDate { get; set; }
Property Value
Type Description
System.String

Location

The location of this organization. Deprecated.

Declaration
[JsonProperty("location")]
public virtual string Location { get; set; }
Property Value
Type Description
System.String

Name

The name of the organization.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Primary

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

Declaration
[JsonProperty("primary")]
public virtual bool? Primary { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

StartDate

The date that the person joined this organization.

Declaration
[JsonProperty("startDate")]
public virtual string StartDate { get; set; }
Property Value
Type Description
System.String

Title

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

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Type

The type of organization. Possible values include, but are not limited to, the following values: - "work" - Work. - "school" - School.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String
Back to top