/* Options: Date: 2025-12-06 07:09:48 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: ReportManagerQueriesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/v1/ReportManager/api/Queries", Verbs="GET,OPTIONS") public static class ReportManagerQueriesRequest extends ReportManagerRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class ReportManagerRequest { } public static interface IReportManagerDocument { } public static class ReportManagerQuery implements IReportManagerDocument { public Integer id = null; public String text = null; public String name = null; public Integer getId() { return id; } public ReportManagerQuery setId(Integer value) { this.id = value; return this; } public String getText() { return text; } public ReportManagerQuery setText(String value) { this.text = value; return this; } public String getName() { return name; } public ReportManagerQuery setName(String value) { this.name = value; return this; } } }