| Index: generated/googleapis/lib/civicinfo/v2.dart
|
| diff --git a/generated/googleapis/lib/civicinfo/v2.dart b/generated/googleapis/lib/civicinfo/v2.dart
|
| index 9f4eb1c29e8894d10e0c325ffd7fff33d70c8163..4f9f9a63407927870be9f33fd2b0a7517dbb4411 100644
|
| --- a/generated/googleapis/lib/civicinfo/v2.dart
|
| +++ b/generated/googleapis/lib/civicinfo/v2.dart
|
| @@ -14,7 +14,10 @@ export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
|
|
|
| const core.String USER_AGENT = 'dart-api-client civicinfo/v2';
|
|
|
| -/** An API for accessing civic information. */
|
| +/**
|
| + * Provides polling places, early vote locations, contest data, election
|
| + * officials, and government representatives for U.S. residential addresses.
|
| + */
|
| class CivicinfoApi {
|
|
|
| final commons.ApiRequester _requester;
|
| @@ -385,6 +388,7 @@ class AdministrativeBody {
|
| * voting.
|
| */
|
| core.String absenteeVotingInfoUrl;
|
| + core.List<core.String> addressLines;
|
| /**
|
| * A URL provided by this administrative body to give contest information to
|
| * the voter.
|
| @@ -433,6 +437,9 @@ class AdministrativeBody {
|
| if (_json.containsKey("absenteeVotingInfoUrl")) {
|
| absenteeVotingInfoUrl = _json["absenteeVotingInfoUrl"];
|
| }
|
| + if (_json.containsKey("addressLines")) {
|
| + addressLines = _json["addressLines"];
|
| + }
|
| if (_json.containsKey("ballotInfoUrl")) {
|
| ballotInfoUrl = _json["ballotInfoUrl"];
|
| }
|
| @@ -476,6 +483,9 @@ class AdministrativeBody {
|
| if (absenteeVotingInfoUrl != null) {
|
| _json["absenteeVotingInfoUrl"] = absenteeVotingInfoUrl;
|
| }
|
| + if (addressLines != null) {
|
| + _json["addressLines"] = addressLines;
|
| + }
|
| if (ballotInfoUrl != null) {
|
| _json["ballotInfoUrl"] = ballotInfoUrl;
|
| }
|
|
|