Class: Google::Apis::PeopleV1::Organization

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Organization

Returns a new instance of Organization



1629
1630
1631
# File 'generated/google/apis/people_v1/classes.rb', line 1629

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#currentBoolean Also known as: current?

True if the organization is the person's current organization; false if the organization is a past organization. Corresponds to the JSON property current

Returns:

  • (Boolean)


1542
1543
1544
# File 'generated/google/apis/people_v1/classes.rb', line 1542

def current
  @current
end

#departmentString

The person's department at the organization. Corresponds to the JSON property department

Returns:

  • (String)


1571
1572
1573
# File 'generated/google/apis/people_v1/classes.rb', line 1571

def department
  @department
end

#domainString

The domain name associated with the organization; for example, google.com. Corresponds to the JSON property domain

Returns:

  • (String)


1566
1567
1568
# File 'generated/google/apis/people_v1/classes.rb', line 1566

def domain
  @domain
end

#end_dateGoogle::Apis::PeopleV1::Date

Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. The day may be 0 to represent a year and month where the day is not significant. The year may be 0 to represent a month and day independent of year; for example, anniversary date. Corresponds to the JSON property endDate



1601
1602
1603
# File 'generated/google/apis/people_v1/classes.rb', line 1601

def end_date
  @end_date
end

#formatted_typeString

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

Returns:

  • (String)


1549
1550
1551
# File 'generated/google/apis/people_v1/classes.rb', line 1549

def formatted_type
  @formatted_type
end

#job_descriptionString

The person's job description at the organization. Corresponds to the JSON property jobDescription

Returns:

  • (String)


1589
1590
1591
# File 'generated/google/apis/people_v1/classes.rb', line 1589

def job_description
  @job_description
end

#locationString

The location of the organization office the person works at. Corresponds to the JSON property location

Returns:

  • (String)


1622
1623
1624
# File 'generated/google/apis/people_v1/classes.rb', line 1622

def location
  @location
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



1617
1618
1619
# File 'generated/google/apis/people_v1/classes.rb', line 1617

def 
  @metadata
end

#nameString

The name of the organization. Corresponds to the JSON property name

Returns:

  • (String)


1612
1613
1614
# File 'generated/google/apis/people_v1/classes.rb', line 1612

def name
  @name
end

#phonetic_nameString

The phonetic name of the organization. Corresponds to the JSON property phoneticName

Returns:

  • (String)


1576
1577
1578
# File 'generated/google/apis/people_v1/classes.rb', line 1576

def phonetic_name
  @phonetic_name
end

#start_dateGoogle::Apis::PeopleV1::Date

Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. The day may be 0 to represent a year and month where the day is not significant. The year may be 0 to represent a month and day independent of year; for example, anniversary date. Corresponds to the JSON property startDate



1561
1562
1563
# File 'generated/google/apis/people_v1/classes.rb', line 1561

def start_date
  @start_date
end

#symbolString

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

Returns:

  • (String)


1607
1608
1609
# File 'generated/google/apis/people_v1/classes.rb', line 1607

def symbol
  @symbol
end

#titleString

The person's job title at the organization. Corresponds to the JSON property title

Returns:

  • (String)


1627
1628
1629
# File 'generated/google/apis/people_v1/classes.rb', line 1627

def title
  @title
end

#typeString

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

  • work
  • school Corresponds to the JSON property type

Returns:

  • (String)


1584
1585
1586
# File 'generated/google/apis/people_v1/classes.rb', line 1584

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
# File 'generated/google/apis/people_v1/classes.rb', line 1634

def update!(**args)
  @current = args[:current] if args.key?(:current)
  @formatted_type = args[:formatted_type] if args.key?(:formatted_type)
  @start_date = args[:start_date] if args.key?(:start_date)
  @domain = args[:domain] if args.key?(:domain)
  @department = args[:department] if args.key?(:department)
  @phonetic_name = args[:phonetic_name] if args.key?(:phonetic_name)
  @type = args[:type] if args.key?(:type)
  @job_description = args[:job_description] if args.key?(:job_description)
  @end_date = args[:end_date] if args.key?(:end_date)
  @symbol = args[:symbol] if args.key?(:symbol)
  @name = args[:name] if args.key?(:name)
  @metadata = args[:metadata] if args.key?(:metadata)
  @location = args[:location] if args.key?(:location)
  @title = args[:title] if args.key?(:title)
end