Class: Google::Apis::CivicinfoV2::Official

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

Overview

Information about a person holding an elected office.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Official

Returns a new instance of Official.



952
953
954
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 952

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

Instance Attribute Details

#addressArray<Google::Apis::CivicinfoV2::SimpleAddressType>

Addresses at which to contact the official. Corresponds to the JSON property address



915
916
917
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 915

def address
  @address
end

#channelsArray<Google::Apis::CivicinfoV2::Channel>

A list of known (social) media channels for this official. Corresponds to the JSON property channels



920
921
922
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 920

def channels
  @channels
end

#emailsArray<String>

The direct email addresses for the official. Corresponds to the JSON property emails

Returns:

  • (Array<String>)


925
926
927
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 925

def emails
  @emails
end

#nameString

The official's name. Corresponds to the JSON property name

Returns:

  • (String)


930
931
932
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 930

def name
  @name
end

#partyString

The full name of the party the official belongs to. Corresponds to the JSON property party

Returns:

  • (String)


935
936
937
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 935

def party
  @party
end

#phonesArray<String>

The official's public contact phone numbers. Corresponds to the JSON property phones

Returns:

  • (Array<String>)


940
941
942
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 940

def phones
  @phones
end

#photo_urlString

A URL for a photo of the official. Corresponds to the JSON property photoUrl

Returns:

  • (String)


945
946
947
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 945

def photo_url
  @photo_url
end

#urlsArray<String>

The official's public website URLs. Corresponds to the JSON property urls

Returns:

  • (Array<String>)


950
951
952
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 950

def urls
  @urls
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



957
958
959
960
961
962
963
964
965
966
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 957

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @channels = args[:channels] if args.key?(:channels)
  @emails = args[:emails] if args.key?(:emails)
  @name = args[:name] if args.key?(:name)
  @party = args[:party] if args.key?(:party)
  @phones = args[:phones] if args.key?(:phones)
  @photo_url = args[:photo_url] if args.key?(:photo_url)
  @urls = args[:urls] if args.key?(:urls)
end