update models

This commit is contained in:
Efstratios Giannopoulos 2024-05-03 10:32:37 +03:00
parent 32d174b6b6
commit 89af3e4329
1 changed files with 9 additions and 0 deletions

View File

@ -11,6 +11,7 @@ public class FieldModel {
private String id;
private String textValue;
private FileEnvelopeModel file;
private Boolean booleanValue;
private List<String> textListValue;
@ -75,4 +76,12 @@ public class FieldModel {
public void setFile(FileEnvelopeModel file) {
this.file = file;
}
public Boolean getBooleanValue() {
return booleanValue;
}
public void setBooleanValue(Boolean booleanValue) {
this.booleanValue = booleanValue;
}
}