Skip to content

Commit

Permalink
changed optional fields to bool
Browse files Browse the repository at this point in the history
  • Loading branch information
cameroncaci committed Nov 30, 2023
1 parent 618a8a4 commit e628923
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>com.milmove.trdmlambda</groupId>
<artifactId>trdm-lambda</artifactId>
<version>0.4.1.3</version>
<version>0.4.1.4</version>
<name>trdm java spring interface</name>
<description>Project for deploying a Java RESTful interface for SOAP requests to TRDM.</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public class GetTableRequest {
// Optional date time filters to be used in specific range requests
private String firstDateTimeFilter; // Optional field: XMLGregorianCalendar
private String secondDateTimeFilter; // Optional field: XMLGregorianCalendar
private String returnRowStatus; // Optional field: Returns individual row status with request, boolean
private String returnLastUpdate; // Optional field: Return last update with request, boolean
private boolean returnRowStatus; // Optional field: Returns individual row status with request, boolean
private boolean returnLastUpdate; // Optional field: Return last update with request, boolean
}

0 comments on commit e628923

Please sign in to comment.