Class: Google::Apis::CivicinfoV2::ElectionOfficial

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 individual election officials.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ElectionOfficial

Returns a new instance of ElectionOfficial.



580
581
582
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 580

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

Instance Attribute Details

#email_addressString

The email address of the election official. Corresponds to the JSON property emailAddress

Returns:

  • (String)


558
559
560
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 558

def email_address
  @email_address
end

#fax_numberString

The fax number of the election official. Corresponds to the JSON property faxNumber

Returns:

  • (String)


563
564
565
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 563

def fax_number
  @fax_number
end

#nameString

The full name of the election official. Corresponds to the JSON property name

Returns:

  • (String)


568
569
570
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 568

def name
  @name
end

#office_phone_numberString

The office phone number of the election official. Corresponds to the JSON property officePhoneNumber

Returns:

  • (String)


573
574
575
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 573

def office_phone_number
  @office_phone_number
end

#titleString

The title of the election official. Corresponds to the JSON property title

Returns:

  • (String)


578
579
580
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 578

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



585
586
587
588
589
590
591
# File 'lib/google/apis/civicinfo_v2/classes.rb', line 585

def update!(**args)
  @email_address = args[:email_address] if args.key?(:email_address)
  @fax_number = args[:fax_number] if args.key?(:fax_number)
  @name = args[:name] if args.key?(:name)
  @office_phone_number = args[:office_phone_number] if args.key?(:office_phone_number)
  @title = args[:title] if args.key?(:title)
end