/* Options: Date: 2026-06-13 16:07:33 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: TermOverrideRequest.* //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/terminology/override", Verbs="POST,DELETE,OPTIONS") public static class TermOverrideRequest implements IReturn { public String TermKey = null; public String Label = null; public String getTermKey() { return TermKey; } public TermOverrideRequest setTermKey(String value) { this.TermKey = value; return this; } public String getLabel() { return Label; } public TermOverrideRequest setLabel(String value) { this.Label = value; return this; } private static Object responseType = TerminologyAdminResponse.class; public Object getResponseType() { return responseType; } } public static class TerminologyAdminResponse { public ResponseStatus ResponseStatus = null; public ArrayList Packs = new ArrayList(); public UUID SelectedPackId = null; public HashMap Terms = new HashMap(); public ArrayList Overrides = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public TerminologyAdminResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPacks() { return Packs; } public TerminologyAdminResponse setPacks(ArrayList value) { this.Packs = value; return this; } public UUID getSelectedPackId() { return SelectedPackId; } public TerminologyAdminResponse setSelectedPackId(UUID value) { this.SelectedPackId = value; return this; } public HashMap getTerms() { return Terms; } public TerminologyAdminResponse setTerms(HashMap value) { this.Terms = value; return this; } public ArrayList getOverrides() { return Overrides; } public TerminologyAdminResponse setOverrides(ArrayList value) { this.Overrides = value; return this; } } public static class IndustryPack { public UUID PackId = null; public String Code = null; public String Name = null; public Boolean IsActive = null; public UUID getPackId() { return PackId; } public IndustryPack setPackId(UUID value) { this.PackId = value; return this; } public String getCode() { return Code; } public IndustryPack setCode(String value) { this.Code = value; return this; } public String getName() { return Name; } public IndustryPack setName(String value) { this.Name = value; return this; } public Boolean getIsActive() { return IsActive; } public IndustryPack setIsActive(Boolean value) { this.IsActive = value; return this; } } public static class TermOverride { public String TermKey = null; public String Label = null; public String CreatedBy = null; public Date CreatedAt = null; public Date UpdatedAt = null; public String getTermKey() { return TermKey; } public TermOverride setTermKey(String value) { this.TermKey = value; return this; } public String getLabel() { return Label; } public TermOverride setLabel(String value) { this.Label = value; return this; } public String getCreatedBy() { return CreatedBy; } public TermOverride setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public TermOverride setCreatedAt(Date value) { this.CreatedAt = value; return this; } public Date getUpdatedAt() { return UpdatedAt; } public TermOverride setUpdatedAt(Date value) { this.UpdatedAt = value; return this; } } }