/* Options: Date: 2026-06-06 19:01:53 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.vipbetting.ath.cx //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetTimezone.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } // @Route("/qry/tz") export class GetTimezone implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetTimezone'; } public getMethod() { return 'POST'; } public createResponse() { return ''; } }