Skip to content

Commit

Permalink
Merge pull request #19 from emailage/feature/DisDescription
Browse files Browse the repository at this point in the history
Add disDescription to response
  • Loading branch information
martinkduncan authored Mar 10, 2020
2 parents e2e0f68 + 07ab034 commit 014923e
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ public class EmailageResult {
private String shipAddressToFullNameConfidence;
private String shipAddressToLastNameConfidence;
private String standardizedBillingAddress;
private String disDescription;

public String getStandardizedShippingAddress() {
return standardizedShippingAddress;
Expand Down Expand Up @@ -1269,4 +1270,13 @@ public String getCardType() {
public void setCardType(String cardType) {
this.cardType = cardType;
}

public String getDisDescription() {
return disDescription;
}

@JsonProperty("disDescription")
public void setDisDescription(String disDescription) {
this.disDescription = disDescription;
}
}

0 comments on commit 014923e

Please sign in to comment.