/* Options: Date: 2025-12-06 09:03:28 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FFFieldRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/FFField", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/FFField/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class FFFieldRequest implements IReturn { public ArrayList FFField = new ArrayList(); public ArrayList getFfField() { return FFField; } public FFFieldRequest setFfField(ArrayList value) { this.FFField = value; return this; } private static Object responseType = FFFieldResponse.class; public Object getResponseType() { return responseType; } } public static class FFFieldResponse { public ResponseStatus ResponseStatus = null; public ArrayList FFField = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public FFFieldResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getFfField() { return FFField; } public FFFieldResponse setFfField(ArrayList value) { this.FFField = value; return this; } } public static class FFFieldExtended extends FFField { public String Name = null; public Boolean IsYesNo = null; public String getName() { return Name; } public FFFieldExtended setName(String value) { this.Name = value; return this; } public Boolean getIsYesNo() { return IsYesNo; } public FFFieldExtended setIsYesNo(Boolean value) { this.IsYesNo = value; return this; } } public static class FFField { public UUID Id = null; public UUID FFSectionId = null; public Integer FieldTypeId = null; public Integer x = null; public Integer y = null; public Integer height = null; public Integer width = null; public String Text = null; public UUID getId() { return Id; } public FFField setId(UUID value) { this.Id = value; return this; } public UUID getFfSectionId() { return FFSectionId; } public FFField setFfSectionId(UUID value) { this.FFSectionId = value; return this; } public Integer getFieldTypeId() { return FieldTypeId; } public FFField setFieldTypeId(Integer value) { this.FieldTypeId = value; return this; } public Integer getX() { return x; } public FFField setX(Integer value) { this.x = value; return this; } public Integer getY() { return y; } public FFField setY(Integer value) { this.y = value; return this; } public Integer getHeight() { return height; } public FFField setHeight(Integer value) { this.height = value; return this; } public Integer getWidth() { return width; } public FFField setWidth(Integer value) { this.width = value; return this; } public String getText() { return Text; } public FFField setText(String value) { this.Text = value; return this; } } }