/* Options: Date: 2026-08-01 06:24:09 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: SamGovWdSearchRequest.* //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/wage-determinations/samgov/search", Verbs="GET,OPTIONS") public static class SamGovWdSearchRequest implements IReturn { public String State = null; public String ConstructionType = null; public String Q = null; public String getState() { return State; } public SamGovWdSearchRequest setState(String value) { this.State = value; return this; } public String getConstructionType() { return ConstructionType; } public SamGovWdSearchRequest setConstructionType(String value) { this.ConstructionType = value; return this; } public String getQ() { return Q; } public SamGovWdSearchRequest setQ(String value) { this.Q = value; return this; } private static Object responseType = SamGovWdSearchResponse.class; public Object getResponseType() { return responseType; } } public static class SamGovWdSearchResponse { public ResponseStatus ResponseStatus = null; public ArrayList Results = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SamGovWdSearchResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getResults() { return Results; } public SamGovWdSearchResponse setResults(ArrayList value) { this.Results = value; return this; } } public static class SamGovWdSummary { public String WdNumber = null; public Integer Revision = null; public String ConstructionTypes = null; public String Counties = null; public Date PublishDate = null; public Date ModifiedDate = null; public Boolean IsActive = null; public String getWdNumber() { return WdNumber; } public SamGovWdSummary setWdNumber(String value) { this.WdNumber = value; return this; } public Integer getRevision() { return Revision; } public SamGovWdSummary setRevision(Integer value) { this.Revision = value; return this; } public String getConstructionTypes() { return ConstructionTypes; } public SamGovWdSummary setConstructionTypes(String value) { this.ConstructionTypes = value; return this; } public String getCounties() { return Counties; } public SamGovWdSummary setCounties(String value) { this.Counties = value; return this; } public Date getPublishDate() { return PublishDate; } public SamGovWdSummary setPublishDate(Date value) { this.PublishDate = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public SamGovWdSummary setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public Boolean getIsActive() { return IsActive; } public SamGovWdSummary setIsActive(Boolean value) { this.IsActive = value; return this; } } }