/* Options: Date: 2026-05-11 08:51:06 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bettor.webhop.biz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindLocationMarkers.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } // @Route("/qry/locations/markers") export class FindLocationMarkers implements IReturn { public organizationId?: string; public groupId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'FindLocationMarkers'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }