-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add new entity PCO30 Co-authored-by: Doaa Mohamed <[email protected]>
- Loading branch information
Showing
10 changed files
with
588 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...sdk/data/model/entity/core/customobjectinstances/person/PersonCustomObjectInstance30.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.bullhornsdk.data.model.entity.core.customobjectinstances.person; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
import com.fasterxml.jackson.annotation.JsonRootName; | ||
|
||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
@JsonRootName(value = "data") | ||
@JsonPropertyOrder({ "id", "person", "text1", "text2", "text3", "text4", "text5", "text6", "text7", "text8", "text9", "text10", "text11", "text12", "text13", | ||
"text14", "text15", "text16", "text17", "text18", "text19", "text20", "int1", "int2", "int3", "int4", "int5", "int6", "int7", "int8", "int9", | ||
"int10", "float1", "float2", "float3", "float4", "float5", "float6", "float7", "float8", "float9", "float10", "textBlock1", "textBlock2", | ||
"textBlock3", "textBlock4", "textBlock5", "date1", "date2", "date3", "date4", "date5", "date6", "date7", "date8", "date9", "date10", "dateAdded" }) | ||
public class PersonCustomObjectInstance30 extends PersonCustomObjectInstance { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...ta/model/response/list/customobjectinstances/PersonCustomObjectInstance30ListWrapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.bullhornsdk.data.model.response.list.customobjectinstances; | ||
|
||
import com.bullhornsdk.data.model.entity.core.customobjectinstances.person.PersonCustomObjectInstance30; | ||
import com.bullhornsdk.data.model.response.list.StandardListWrapper; | ||
|
||
|
||
public class PersonCustomObjectInstance30ListWrapper extends StandardListWrapper<PersonCustomObjectInstance30> { | ||
} |
7 changes: 7 additions & 0 deletions
7
...data/model/response/single/customobjectinstances/PersonCustomObjectInstance30Wrapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.bullhornsdk.data.model.response.single.customobjectinstances; | ||
|
||
import com.bullhornsdk.data.model.entity.core.customobjectinstances.person.PersonCustomObjectInstance30; | ||
import com.bullhornsdk.data.model.response.single.StandardWrapper; | ||
|
||
public class PersonCustomObjectInstance30Wrapper extends StandardWrapper<PersonCustomObjectInstance30> { | ||
} |
Oops, something went wrong.