Skip to content

Commit

Permalink
Merge fe1ff99 into f2b208d
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Zhang committed Jun 15, 2017
2 parents f2b208d + fe1ff99 commit a0c9f47
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ 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;
Expand All @@ -51,6 +52,7 @@ 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,
Expand All @@ -74,6 +76,7 @@ public Components(
this.zipCodePlus4 = zipCodePlus4;
this.zipCodeType = zipCodeType;
this.deliveryPointBarcode = deliveryPointBarcode;
this.addressType = addressType;
this.recordType = recordType;
this.defaultBuildingAddress = defaultBuildingAddress;
this.county = county;
Expand Down Expand Up @@ -146,6 +149,10 @@ public String getDeliveryPointBarcode() {
return deliveryPointBarcode;
}

public String getAddressType() {
return addressType;
}

public String getRecordType() {
return recordType;
}
Expand Down

0 comments on commit a0c9f47

Please sign in to comment.