|
9 | 9 | import com.fasterxml.jackson.annotation.JsonProperty; |
10 | 10 | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
11 | 11 |
|
12 | | -@JsonPropertyOrder({"hcpcs_code", "generic_name", "brand_names", "strength", "fda_approval_year", "fda_discontinuation_year", "cms_approval_date", |
| 12 | +@JsonPropertyOrder({"hcpcs_code", "generic_name", "description", "brand_names", "strength", "fda_approval_year", "fda_discontinuation_year", "cms_approval_date", |
13 | 13 | "cms_discontinuation_date", "categories", "major_drug_class", "minor_drug_class", "oral", "date_added", "date_modified", "score"}) |
14 | 14 | public class Hcpcs { |
15 | 15 |
|
16 | 16 | @JsonProperty("hcpcs_code") |
17 | 17 | private String hcpcsCode; |
18 | 18 | @JsonProperty("generic_name") |
19 | 19 | private String genericName; |
| 20 | + @JsonProperty("description") |
| 21 | + private String description; |
20 | 22 | @JsonProperty("brand_names") |
21 | 23 | private List<String> brandNames; |
22 | 24 | @JsonProperty("strength") |
@@ -60,6 +62,14 @@ public void setGenericName(String genericName) { |
60 | 62 | this.genericName = genericName; |
61 | 63 | } |
62 | 64 |
|
| 65 | + public String getDescription() { |
| 66 | + return description; |
| 67 | + } |
| 68 | + |
| 69 | + public void setDescription(String description) { |
| 70 | + this.description = description; |
| 71 | + } |
| 72 | + |
63 | 73 | public List<String> getBrandNames() { |
64 | 74 | return brandNames; |
65 | 75 | } |
|
0 commit comments