/* Options: Date: 2025-12-06 10:16:59 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: PredefinedTextRequest.* //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/PredefinedText", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/PredefinedText/{ID}", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/PredefinedText/ByType/{Type}", Verbs="GET") public static class PredefinedTextRequest implements IReturn { public String Type = null; public Integer ID = null; public ArrayList PredefinedText = new ArrayList(); public String getType() { return Type; } public PredefinedTextRequest setType(String value) { this.Type = value; return this; } public Integer getId() { return ID; } public PredefinedTextRequest setId(Integer value) { this.ID = value; return this; } public ArrayList getPredefinedText() { return PredefinedText; } public PredefinedTextRequest setPredefinedText(ArrayList value) { this.PredefinedText = value; return this; } private static Object responseType = PredefinedTextResponse.class; public Object getResponseType() { return responseType; } } public static class PredefinedTextResponse { public ResponseStatus ResponseStatus = null; public ArrayList PredefinedText = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public PredefinedTextResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPredefinedText() { return PredefinedText; } public PredefinedTextResponse setPredefinedText(ArrayList value) { this.PredefinedText = value; return this; } } public static class PredefinedText { public Integer ID = null; public String Type = null; public String Text = null; public Integer getId() { return ID; } public PredefinedText setId(Integer value) { this.ID = value; return this; } public String getType() { return Type; } public PredefinedText setType(String value) { this.Type = value; return this; } public String getText() { return Text; } public PredefinedText setText(String value) { this.Text = value; return this; } } }