/* Options: Date: 2025-08-05 01:58:51 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SettingsRequest.* //ExcludeTypes: //DefaultImports: */ export class SettingsResponse { public Results: SettingDto[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/search/settings") // @Route("/search/settings", "GET") export class SettingsRequest implements IReturn { public IndexId: string; public SuggestionFields: string; public SectionName: string; public Text: string; public Take: number; public Skip: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SettingsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new SettingsResponse(); } }