Skip to content

Commit

Permalink
Merge a52e9eb into 0564e88
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Zhang committed Jun 23, 2017
2 parents 0564e88 + a52e9eb commit cea2e8c
Showing 1 changed file with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ public static class Components {
private String zipCodePlus4;
private String zipCodeType;
private String deliveryPointBarcode;
private String addressType;
private String recordType;
private String defaultBuildingAddress;
private String county;
private String countyFips;
private String carrierRoute;
private String carrierRouteType;
private String latitude;
private String longitude;

@JsonCreator
public Components(
Expand All @@ -51,12 +54,15 @@ public Components(
@JsonProperty("zip_code_plus_4") final String zipCodePlus4,
@JsonProperty("zip_code_type") final String zipCodeType,
@JsonProperty("delivery_point_barcode") final String deliveryPointBarcode,
@JsonProperty("address_type") final String addressType,
@JsonProperty("record_type") final String recordType,
@JsonProperty("default_building_address") final String defaultBuildingAddress,
@JsonProperty("county") final String county,
@JsonProperty("county_fips") final String countyFips,
@JsonProperty("carrier_route") final String carrierRoute,
@JsonProperty("carrier_route_type") final String carrierRouteType
@JsonProperty("carrier_route_type") final String carrierRouteType,
@JsonProperty("latitude") final String latitude,
@JsonProperty("longitude") final String longitude
) {
this.primaryNumber = primaryNumber;
this.streetPredirection = streetPredirection;
Expand All @@ -74,12 +80,15 @@ public Components(
this.zipCodePlus4 = zipCodePlus4;
this.zipCodeType = zipCodeType;
this.deliveryPointBarcode = deliveryPointBarcode;
this.addressType = addressType;
this.recordType = recordType;
this.defaultBuildingAddress = defaultBuildingAddress;
this.county = county;
this.countyFips = countyFips;
this.carrierRoute = carrierRoute;
this.carrierRouteType = carrierRouteType;
this.latitude = latitude;
this.longitude = longitude;
}

public String getPrimaryNumber() {
Expand Down Expand Up @@ -146,6 +155,10 @@ public String getDeliveryPointBarcode() {
return deliveryPointBarcode;
}

public String getAddressType() {
return addressType;
}

public String getRecordType() {
return recordType;
}
Expand All @@ -169,6 +182,14 @@ public String getCarrierRoute() {
public String getCarrierRouteType() {
return carrierRouteType;
}

public String getLatitude() {
return latitude;
}

public String getLongitude() {
return longitude;
}
}

public static class Deliverability {
Expand Down

0 comments on commit cea2e8c

Please sign in to comment.