/* Options: Date: 2025-08-05 01:57: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: GetPageValidation.* //ExcludeTypes: //DefaultImports: */ export class PageValidation { public IsValid: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/ab-testing/is-valid", "GET") export class GetPageValidation implements IReturn { public Id: string; public Culture: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPageValidation'; } public getMethod() { return 'GET'; } public createResponse() { return new PageValidation(); } }