/* Options: Date: 2025-12-06 07:11:22 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: ReportManagerObjectFieldsRequest.* //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/Objects/{Table}/fields", Verbs="GET,OPTIONS") public static class ReportManagerObjectFieldsRequest extends ReportManagerRequest implements IReturn> { public String Table = null; public String getTable() { return Table; } public ReportManagerObjectFieldsRequest setTable(String value) { this.Table = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class ReportManagerRequest { } @DataContract public static class ReportManagerObject implements IReportManagerDocument { @DataMember(Name="id") @SerializedName("id") public String ID = null; @DataMember(Name="name") @SerializedName("name") public String Name = null; @DataMember(Name="data") @SerializedName("data") public ArrayList Fields = new ArrayList(); @DataMember(Name="refs") @SerializedName("refs") public ArrayList References = new ArrayList(); public String getId() { return ID; } public ReportManagerObject setId(String value) { this.ID = value; return this; } public String getName() { return Name; } public ReportManagerObject setName(String value) { this.Name = value; return this; } public ArrayList getFields() { return Fields; } public ReportManagerObject setFields(ArrayList value) { this.Fields = value; return this; } public ArrayList getReferences() { return References; } public ReportManagerObject setReferences(ArrayList value) { this.References = value; return this; } } public static interface IReportManagerDocument { } @DataContract public static class ReportManagerObjectData { @DataMember(Name="id") @SerializedName("id") public String ID = null; @DataMember(Name="name") @SerializedName("name") public String Name = null; @DataMember(Name="filter") @SerializedName("filter") public Boolean Filter = null; @DataMember(Name="edit") @SerializedName("edit") public Boolean Edit = null; @DataMember(Name="type") @SerializedName("type") public String TypeName = null; @DataMember(Name="ref") @SerializedName("ref") public String Ref = null; @DataMember(Name="key") @SerializedName("key") public Boolean IsKey = null; @DataMember(Name="show") @SerializedName("show") public Boolean IsLabel = null; public String getId() { return ID; } public ReportManagerObjectData setId(String value) { this.ID = value; return this; } public String getName() { return Name; } public ReportManagerObjectData setName(String value) { this.Name = value; return this; } public Boolean isFilter() { return Filter; } public ReportManagerObjectData setFilter(Boolean value) { this.Filter = value; return this; } public Boolean isEdit() { return Edit; } public ReportManagerObjectData setEdit(Boolean value) { this.Edit = value; return this; } public String getTypeName() { return TypeName; } public ReportManagerObjectData setTypeName(String value) { this.TypeName = value; return this; } public String getRef() { return Ref; } public ReportManagerObjectData setRef(String value) { this.Ref = value; return this; } public Boolean getIsKey() { return IsKey; } public ReportManagerObjectData setIsKey(Boolean value) { this.IsKey = value; return this; } public Boolean getIsLabel() { return IsLabel; } public ReportManagerObjectData setIsLabel(Boolean value) { this.IsLabel = value; return this; } } @DataContract public static class ReportManagerObjectRef { @DataMember(Name="id") @SerializedName("id") public Integer ID = null; @DataMember(Name="target") @SerializedName("target") public String Target = null; @DataMember(Name="source") @SerializedName("source") public String Source = null; @DataMember(Name="name") @SerializedName("name") public String Name = null; public Integer getId() { return ID; } public ReportManagerObjectRef setId(Integer value) { this.ID = value; return this; } public String getTarget() { return Target; } public ReportManagerObjectRef setTarget(String value) { this.Target = value; return this; } public String getSource() { return Source; } public ReportManagerObjectRef setSource(String value) { this.Source = value; return this; } public String getName() { return Name; } public ReportManagerObjectRef setName(String value) { this.Name = value; return this; } } }