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

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

Overview

Information about a person holding an elected office.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Official

Returns a new instance of Official.



822
823
824
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 822

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



785
786
787
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 785

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



790
791
792
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 790

def channels
  @channels
end

#emailsArray<String>

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

Returns:

  • (Array<String>)


795
796
797
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 795

def emails
  @emails
end

#nameString

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

Returns:

  • (String)


800
801
802
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 800

def name
  @name
end

#partyString

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

Returns:

  • (String)


805
806
807
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 805

def party
  @party
end

#phonesArray<String>

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

Returns:

  • (Array<String>)


810
811
812
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 810

def phones
  @phones
end

#photo_urlString

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

Returns:

  • (String)


815
816
817
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 815

def photo_url
  @photo_url
end

#urlsArray<String>

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

Returns:

  • (Array<String>)


820
821
822
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 820

def urls
  @urls
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



827
828
829
830
831
832
833
834
835
836
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 827

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