File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
client/src/main/generated/com/regula/documentreader/webclient/model Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public class AreaArray {
27
27
public static final String SERIALIZED_NAME_POINTS = "Points" ;
28
28
29
29
@ SerializedName (SERIALIZED_NAME_POINTS )
30
- private PointArray points ;
30
+ private List < PointArray > points = null ;
31
31
32
32
public AreaArray withList (List <RectangleCoordinates > list ) {
33
33
this .list = list ;
@@ -56,22 +56,30 @@ public void setList(List<RectangleCoordinates> list) {
56
56
this .list = list ;
57
57
}
58
58
59
- public AreaArray withPoints (PointArray points ) {
59
+ public AreaArray withPoints (List < PointArray > points ) {
60
60
this .points = points ;
61
61
return this ;
62
62
}
63
63
64
+ public AreaArray addPointsItem (PointArray pointsItem ) {
65
+ if (this .points == null ) {
66
+ this .points = new ArrayList <PointArray >();
67
+ }
68
+ this .points .add (pointsItem );
69
+ return this ;
70
+ }
71
+
64
72
/**
65
73
* Get points
66
74
*
67
75
* @return points
68
76
*/
69
77
@ javax .annotation .Nullable
70
- public PointArray getPoints () {
78
+ public List < PointArray > getPoints () {
71
79
return points ;
72
80
}
73
81
74
- public void setPoints (PointArray points ) {
82
+ public void setPoints (List < PointArray > points ) {
75
83
this .points = points ;
76
84
}
77
85
You can’t perform that action at this time.
0 commit comments