Skip to content

Commit 62ecad8

Browse files
Merge pull request #224 from regulaforensics/develop
Develop -> Stable
2 parents cf25853 + 4b2d14d commit 62ecad8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

client/src/main/generated/com/regula/documentreader/webclient/model/FaceApiSearch.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class FaceApiSearch {
5555

5656
@SerializedName(SERIALIZED_NAME_GROUP_IDS)
5757
@javax.annotation.Nullable
58-
private List<Integer> groupIds;
58+
private List<String> groupIds;
5959

6060
public FaceApiSearch() {}
6161

@@ -97,12 +97,12 @@ public void setThreshold(@javax.annotation.Nullable Float threshold) {
9797
this.threshold = threshold;
9898
}
9999

100-
public FaceApiSearch groupIds(@javax.annotation.Nullable List<Integer> groupIds) {
100+
public FaceApiSearch groupIds(@javax.annotation.Nullable List<String> groupIds) {
101101
this.groupIds = groupIds;
102102
return this;
103103
}
104104

105-
public FaceApiSearch addGroupIdsItem(Integer groupIdsItem) {
105+
public FaceApiSearch addGroupIdsItem(String groupIdsItem) {
106106
if (this.groupIds == null) {
107107
this.groupIds = new ArrayList<>();
108108
}
@@ -116,11 +116,11 @@ public FaceApiSearch addGroupIdsItem(Integer groupIdsItem) {
116116
* @return groupIds
117117
*/
118118
@javax.annotation.Nullable
119-
public List<Integer> getGroupIds() {
119+
public List<String> getGroupIds() {
120120
return groupIds;
121121
}
122122

123-
public void setGroupIds(@javax.annotation.Nullable List<Integer> groupIds) {
123+
public void setGroupIds(@javax.annotation.Nullable List<String> groupIds) {
124124
this.groupIds = groupIds;
125125
}
126126

0 commit comments

Comments
 (0)