Skip to content

Commit

Permalink
Fixing the isWorkFromHome on Placement to map incoming JSON correctly (
Browse files Browse the repository at this point in the history
  • Loading branch information
taswartz authored Sep 24, 2024
1 parent 7c20c9a commit 26fbd28
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 @@ -5,7 +5,7 @@

<groupId>com.bullhorn</groupId>
<artifactId>sdk-rest</artifactId>
<version>2.3.12</version>
<version>2.3.13</version>
<packaging>jar</packaging>

<name>Bullhorn REST SDK</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1502,12 +1502,12 @@ public void setMultirate(Boolean multirate) {
}

@JsonProperty("isWorkFromHome")
public Boolean getWorkFromHome() {
public Boolean getIsWorkFromHome() {
return isWorkFromHome;
}

@JsonProperty("isWorkFromHome")
public void setWorkFromHome(Boolean workFromHome) {
public void setIsWorkFromHome(Boolean workFromHome) {
isWorkFromHome = workFromHome;
}

Expand Down

0 comments on commit 26fbd28

Please sign in to comment.