| Index: generated/googleapis/lib/civicinfo/us_v1.dart
|
| diff --git a/generated/googleapis/lib/civicinfo/us_v1.dart b/generated/googleapis/lib/civicinfo/us_v1.dart
|
| index 81a93d359ca7387537b60c8af0b7608e237a7fba..a152242378f5ef5577dacf718831ca4567f79606 100644
|
| --- a/generated/googleapis/lib/civicinfo/us_v1.dart
|
| +++ b/generated/googleapis/lib/civicinfo/us_v1.dart
|
| @@ -1708,6 +1708,9 @@ class VoterInfoResponse {
|
| */
|
| core.List<PollingLocation> pollingLocations;
|
|
|
| + /** Not documented yet. */
|
| + core.String precinctId;
|
| +
|
| /**
|
| * Local Election Information for the state that the voter votes in. For the
|
| * US, there will only be one element in this array.
|
| @@ -1743,6 +1746,9 @@ class VoterInfoResponse {
|
| if (_json.containsKey("pollingLocations")) {
|
| pollingLocations = _json["pollingLocations"].map((value) => new PollingLocation.fromJson(value)).toList();
|
| }
|
| + if (_json.containsKey("precinctId")) {
|
| + precinctId = _json["precinctId"];
|
| + }
|
| if (_json.containsKey("state")) {
|
| state = _json["state"].map((value) => new AdministrationRegion.fromJson(value)).toList();
|
| }
|
| @@ -1771,6 +1777,9 @@ class VoterInfoResponse {
|
| if (pollingLocations != null) {
|
| _json["pollingLocations"] = pollingLocations.map((value) => (value).toJson()).toList();
|
| }
|
| + if (precinctId != null) {
|
| + _json["precinctId"] = precinctId;
|
| + }
|
| if (state != null) {
|
| _json["state"] = state.map((value) => (value).toJson()).toList();
|
| }
|
|
|