Class: Google::Apis::CivicinfoV2::ElectoralDistrict

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

Describes the geographic scope of a contest.

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) ⇒ ElectoralDistrict

Returns a new instance of ElectoralDistrict.



726
727
728
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 726

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

Instance Attribute Details

#idString

An identifier for this district, relative to its scope. For example, the 34th State Senate district would have id "34" and a scope of stateUpper. Corresponds to the JSON property id

Returns:

  • (String)


706
707
708
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 706

def id
  @id
end

#kg_foreign_keyString

Corresponds to the JSON property kgForeignKey

Returns:

  • (String)


711
712
713
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 711

def kg_foreign_key
  @kg_foreign_key
end

#nameString

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

Returns:

  • (String)


716
717
718
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 716

def name
  @name
end

#scopeString

The geographic scope of this district. If unspecified the district's geography is not known. One of: national, statewide, congressional, stateUpper, stateLower, countywide, judicial, schoolBoard, cityWide, township, countyCouncil, cityCouncil, ward, special Corresponds to the JSON property scope

Returns:

  • (String)


724
725
726
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 724

def scope
  @scope
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



731
732
733
734
735
736
# File 'generated/google/apis/civicinfo_v2/classes.rb', line 731

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kg_foreign_key = args[:kg_foreign_key] if args.key?(:kg_foreign_key)
  @name = args[:name] if args.key?(:name)
  @scope = args[:scope] if args.key?(:scope)
end