/* Options: Date: 2026-08-12 20:05:45 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: HoldsRequest.* //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/records/holds", Verbs="GET,OPTIONS") public static class HoldsRequest implements IReturn { private static Object responseType = HoldsResponse.class; public Object getResponseType() { return responseType; } } public static class HoldsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Holds = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public HoldsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getHolds() { return Holds; } public HoldsResponse setHolds(ArrayList value) { this.Holds = value; return this; } } public static class LegalHoldDto { public Integer HoldId = null; public String HoldKey = null; public String Name = null; public String Matter = null; public String ScopeDim = null; public String ScopeVal = null; public String ScopeLabel = null; public String ScopeNote = null; public String PlacedBy = null; public String PlacedLabel = null; public Boolean Released = null; public String ReleasedLabel = null; public String FrozenJson = null; public String LogJson = null; public ArrayList Matches = new ArrayList(); public Integer getHoldId() { return HoldId; } public LegalHoldDto setHoldId(Integer value) { this.HoldId = value; return this; } public String getHoldKey() { return HoldKey; } public LegalHoldDto setHoldKey(String value) { this.HoldKey = value; return this; } public String getName() { return Name; } public LegalHoldDto setName(String value) { this.Name = value; return this; } public String getMatter() { return Matter; } public LegalHoldDto setMatter(String value) { this.Matter = value; return this; } public String getScopeDim() { return ScopeDim; } public LegalHoldDto setScopeDim(String value) { this.ScopeDim = value; return this; } public String getScopeVal() { return ScopeVal; } public LegalHoldDto setScopeVal(String value) { this.ScopeVal = value; return this; } public String getScopeLabel() { return ScopeLabel; } public LegalHoldDto setScopeLabel(String value) { this.ScopeLabel = value; return this; } public String getScopeNote() { return ScopeNote; } public LegalHoldDto setScopeNote(String value) { this.ScopeNote = value; return this; } public String getPlacedBy() { return PlacedBy; } public LegalHoldDto setPlacedBy(String value) { this.PlacedBy = value; return this; } public String getPlacedLabel() { return PlacedLabel; } public LegalHoldDto setPlacedLabel(String value) { this.PlacedLabel = value; return this; } public Boolean isReleased() { return Released; } public LegalHoldDto setReleased(Boolean value) { this.Released = value; return this; } public String getReleasedLabel() { return ReleasedLabel; } public LegalHoldDto setReleasedLabel(String value) { this.ReleasedLabel = value; return this; } public String getFrozenJson() { return FrozenJson; } public LegalHoldDto setFrozenJson(String value) { this.FrozenJson = value; return this; } public String getLogJson() { return LogJson; } public LegalHoldDto setLogJson(String value) { this.LogJson = value; return this; } public ArrayList getMatches() { return Matches; } public LegalHoldDto setMatches(ArrayList value) { this.Matches = value; return this; } } public static class HoldMatchDto { public String RecordKey = null; public String Name = null; public String Tag = null; public Boolean Warn = null; public String getRecordKey() { return RecordKey; } public HoldMatchDto setRecordKey(String value) { this.RecordKey = value; return this; } public String getName() { return Name; } public HoldMatchDto setName(String value) { this.Name = value; return this; } public String getTag() { return Tag; } public HoldMatchDto setTag(String value) { this.Tag = value; return this; } public Boolean isWarn() { return Warn; } public HoldMatchDto setWarn(Boolean value) { this.Warn = value; return this; } } }