File tree Expand file tree Collapse file tree
src/main/java/com/imsweb/seerapi/client/ndc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ Download [the latest JAR][1] or grab via Maven:
2929<dependency >
3030 <groupId >com.imsweb</groupId >
3131 <artifactId >seerapi-client-java</artifactId >
32- <version >3.6 </version >
32+ <version >3.7 </version >
3333</dependency >
3434```
3535
3636or via Gradle:
3737
3838```
39- compile 'com.imsweb:seerapi-client-java:3.6 '
39+ compile 'com.imsweb:seerapi-client-java:3.7 '
4040```
4141
4242## Usage
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ plugins {
1010}
1111
1212group = ' com.imsweb'
13- version = ' 3.7-SNAPSHOT '
13+ version = ' 3.7'
1414description = ' Java client library for SEER*API'
1515
1616println " Starting build using ${ Jvm.current()} "
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ public class NdcPackage {
1313 private String _code ;
1414 @ JsonProperty ("description" )
1515 private String _description ;
16+ @ JsonProperty ("start_marketing_date" )
17+ private String _startMarketingDate ;
18+ @ JsonProperty ("end_marketing_date" )
19+ private String _endMarketingDate ;
1620
1721 public String getCode () {
1822 return _code ;
@@ -29,4 +33,20 @@ public String getDescription() {
2933 public void setDescription (String description ) {
3034 _description = description ;
3135 }
36+
37+ public String getStartMarketingDate () {
38+ return _startMarketingDate ;
39+ }
40+
41+ public void setStartMarketingDate (String startMarketingDate ) {
42+ _startMarketingDate = startMarketingDate ;
43+ }
44+
45+ public String getEndMarketingDate () {
46+ return _endMarketingDate ;
47+ }
48+
49+ public void setEndMarketingDate (String endMarketingDate ) {
50+ _endMarketingDate = endMarketingDate ;
51+ }
3252}
You can’t perform that action at this time.
0 commit comments