/* Options: Date: 2025-08-05 01:59:40 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SettingsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/search/settings") // @Route(Path="/search/settings", Verbs="GET") public static class SettingsRequest implements IReturn { public UUID IndexId = null; public String SuggestionFields = null; public String SectionName = null; public String Text = null; public Integer Take = null; public Integer Skip = null; public UUID getIndexId() { return IndexId; } public SettingsRequest setIndexId(UUID value) { this.IndexId = value; return this; } public String getSuggestionFields() { return SuggestionFields; } public SettingsRequest setSuggestionFields(String value) { this.SuggestionFields = value; return this; } public String getSectionName() { return SectionName; } public SettingsRequest setSectionName(String value) { this.SectionName = value; return this; } public String getText() { return Text; } public SettingsRequest setText(String value) { this.Text = value; return this; } public Integer getTake() { return Take; } public SettingsRequest setTake(Integer value) { this.Take = value; return this; } public Integer getSkip() { return Skip; } public SettingsRequest setSkip(Integer value) { this.Skip = value; return this; } private static Object responseType = SettingsResponse.class; public Object getResponseType() { return responseType; } } public static class SettingsResponse { public ArrayList Results = null; public ArrayList getResults() { return Results; } public SettingsResponse setResults(ArrayList value) { this.Results = value; return this; } } }