Class: Google::Apis::CivicinfoV2::CivicInfoService
- Inherits:
-
Google::Apis::Core::BaseService
- Object
- Google::Apis::Core::BaseService
- Google::Apis::CivicinfoV2::CivicInfoService
- Defined in:
- lib/google/apis/civicinfo_v2/service.rb
Overview
Google Civic Information API
Provides polling places, early vote locations, contest data, election officials, and government representatives for U.S. residential addresses.
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
Instance Method Summary collapse
-
#initialize ⇒ CivicInfoService
constructor
A new instance of CivicInfoService.
-
#query_election(fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::QueryElectionsResponse
List of available elections to query.
-
#query_voter_info(address, election_id: nil, official_only: nil, return_all_available_data: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::VoterInfoResponse
Looks up information relevant to a voter based on the voter's registered address.
-
#representative_info_by_address(address: nil, include_offices: nil, levels: nil, roles: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::RepresentativeInfoResponse
Looks up political geography and representative information for a single address.
-
#representative_info_by_division(ocd_id, levels: nil, recursive: nil, roles: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::RepresentativeInfoData
Looks up representative information for a single geographic division.
-
#search_divisions(query: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::SearchDivisionResponse
Searches for political divisions by their natural name or OCD ID.
Constructor Details
#initialize ⇒ CivicInfoService
Returns a new instance of CivicInfoService.
46 47 48 49 50 51 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 46 def initialize super('https://civicinfo.googleapis.com/', '', client_name: 'google-apis-civicinfo_v2', client_version: Google::Apis::CivicinfoV2::GEM_VERSION) @batch_path = 'batch' end |
Instance Attribute Details
#key ⇒ String
Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
39 40 41 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 39 def key @key end |
#quota_user ⇒ String
Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
44 45 46 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 44 def quota_user @quota_user end |
Instance Method Details
#query_election(fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::QueryElectionsResponse
List of available elections to query.
104 105 106 107 108 109 110 111 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 104 def query_election(fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'civicinfo/v2/elections', ) command.response_representation = Google::Apis::CivicinfoV2::QueryElectionsResponse::Representation command.response_class = Google::Apis::CivicinfoV2::QueryElectionsResponse command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#query_voter_info(address, election_id: nil, official_only: nil, return_all_available_data: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::VoterInfoResponse
Looks up information relevant to a voter based on the voter's registered address.
146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 146 def query_voter_info(address, election_id: nil, official_only: nil, return_all_available_data: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'civicinfo/v2/voterinfo', ) command.response_representation = Google::Apis::CivicinfoV2::VoterInfoResponse::Representation command.response_class = Google::Apis::CivicinfoV2::VoterInfoResponse command.query['address'] = address unless address.nil? command.query['electionId'] = election_id unless election_id.nil? command.query['officialOnly'] = official_only unless official_only.nil? command.query['returnAllAvailableData'] = return_all_available_data unless return_all_available_data.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#representative_info_by_address(address: nil, include_offices: nil, levels: nil, roles: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::RepresentativeInfoResponse
Looks up political geography and representative information for a single address.
192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 192 def representative_info_by_address(address: nil, include_offices: nil, levels: nil, roles: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'civicinfo/v2/representatives', ) command.response_representation = Google::Apis::CivicinfoV2::RepresentativeInfoResponse::Representation command.response_class = Google::Apis::CivicinfoV2::RepresentativeInfoResponse command.query['address'] = address unless address.nil? command.query['includeOffices'] = include_offices unless include_offices.nil? command.query['levels'] = levels unless levels.nil? command.query['roles'] = roles unless roles.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#representative_info_by_division(ocd_id, levels: nil, recursive: nil, roles: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::RepresentativeInfoData
Looks up representative information for a single geographic division.
237 238 239 240 241 242 243 244 245 246 247 248 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 237 def representative_info_by_division(ocd_id, levels: nil, recursive: nil, roles: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'civicinfo/v2/representatives/{ocdId}', ) command.response_representation = Google::Apis::CivicinfoV2::RepresentativeInfoData::Representation command.response_class = Google::Apis::CivicinfoV2::RepresentativeInfoData command.params['ocdId'] = ocd_id unless ocd_id.nil? command.query['levels'] = levels unless levels.nil? command.query['recursive'] = recursive unless recursive.nil? command.query['roles'] = roles unless roles.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#search_divisions(query: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CivicinfoV2::SearchDivisionResponse
Searches for political divisions by their natural name or OCD ID.
76 77 78 79 80 81 82 83 84 |
# File 'lib/google/apis/civicinfo_v2/service.rb', line 76 def search_divisions(query: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'civicinfo/v2/divisions', ) command.response_representation = Google::Apis::CivicinfoV2::SearchDivisionResponse::Representation command.response_class = Google::Apis::CivicinfoV2::SearchDivisionResponse command.query['query'] = query unless query.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |