|
| 1 | +/* |
| 2 | + * Copyright (C) 2015 Information Management Services, Inc. |
| 3 | + */ |
| 4 | +package com.imsweb.seerapi.client.hcpcs; |
| 5 | + |
| 6 | +import java.util.Date; |
| 7 | +import java.util.List; |
| 8 | + |
| 9 | +import com.fasterxml.jackson.annotation.JsonProperty; |
| 10 | +import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| 11 | + |
| 12 | +@JsonPropertyOrder({"hcpcs_code", "generic_name", "brand_names", "strength", "fda_approval_year", "fda_discontinuation_year", "cms_approval_date", |
| 13 | + "cms_discontinuation_date", "categories", "major_drug_class", "minor_drug_class", "oral", "date_added", "date_modified", "score"}) |
| 14 | +public class Hcpcs { |
| 15 | + |
| 16 | + @JsonProperty("hcpcs_code") |
| 17 | + private String _hcpcsCode; |
| 18 | + @JsonProperty("generic_name") |
| 19 | + private String _genericName; |
| 20 | + @JsonProperty("brand_names") |
| 21 | + private List<String> _brandNames; |
| 22 | + @JsonProperty("strength") |
| 23 | + private String _strength; |
| 24 | + @JsonProperty("fda_approval_year") |
| 25 | + private String _fdaApprovalYear; |
| 26 | + @JsonProperty("fda_discontinuation_year") |
| 27 | + private String _fdaDiscontinuationYear; |
| 28 | + @JsonProperty("cms_approval_date") |
| 29 | + private String _cmsApprovalDate; |
| 30 | + @JsonProperty("cms_discontinuation_date") |
| 31 | + private String _cmsDiscontinuationDate; |
| 32 | + @JsonProperty("categories") |
| 33 | + private List<Category> _categories; |
| 34 | + @JsonProperty("major_drug_class") |
| 35 | + private String _majorDrugClass; |
| 36 | + @JsonProperty("minor_drug_class") |
| 37 | + private String _minorDrugClass; |
| 38 | + @JsonProperty("oral") |
| 39 | + private Boolean _oral; |
| 40 | + @JsonProperty("date_added") |
| 41 | + private Date _dateAdded; |
| 42 | + @JsonProperty("date_modified") |
| 43 | + private Date _dateModified; |
| 44 | + @JsonProperty("score") |
| 45 | + private Double score; |
| 46 | + |
| 47 | + public String getHcpcsCode() { |
| 48 | + return _hcpcsCode; |
| 49 | + } |
| 50 | + |
| 51 | + public String getGenericName() { |
| 52 | + return _genericName; |
| 53 | + } |
| 54 | + |
| 55 | + public List<String> getBrandNames() { |
| 56 | + return _brandNames; |
| 57 | + } |
| 58 | + |
| 59 | + public String getStrength() { |
| 60 | + return _strength; |
| 61 | + } |
| 62 | + |
| 63 | + public String getFdaApprovalYear() { |
| 64 | + return _fdaApprovalYear; |
| 65 | + } |
| 66 | + |
| 67 | + public String getFdaDiscontinuationYear() { |
| 68 | + return _fdaDiscontinuationYear; |
| 69 | + } |
| 70 | + |
| 71 | + public String getCmsApprovalDate() { |
| 72 | + return _cmsApprovalDate; |
| 73 | + } |
| 74 | + |
| 75 | + public String getCmsDiscontinuationDate() { |
| 76 | + return _cmsDiscontinuationDate; |
| 77 | + } |
| 78 | + |
| 79 | + public List<Category> getCategories() { |
| 80 | + return _categories; |
| 81 | + } |
| 82 | + |
| 83 | + public String getMajorDrugClass() { |
| 84 | + return _majorDrugClass; |
| 85 | + } |
| 86 | + |
| 87 | + public String getMinorDrugClass() { |
| 88 | + return _minorDrugClass; |
| 89 | + } |
| 90 | + |
| 91 | + public Boolean getOral() { |
| 92 | + return _oral; |
| 93 | + } |
| 94 | + |
| 95 | + public Date getDateAdded() { |
| 96 | + return _dateAdded; |
| 97 | + } |
| 98 | + |
| 99 | + public Date getDateModified() { |
| 100 | + return _dateModified; |
| 101 | + } |
| 102 | + |
| 103 | + public Double getScore() { |
| 104 | + return score; |
| 105 | + } |
| 106 | + |
| 107 | + // drug categories |
| 108 | + public enum Category { |
| 109 | + HORMONAL_THERAPY, |
| 110 | + ANCILLARY, |
| 111 | + CHEMOTHERAPY, |
| 112 | + IMMUNOTHERAPY, |
| 113 | + RADIOPHARMACEUTICAL; |
| 114 | + } |
| 115 | +} |
0 commit comments