/* Options: Date: 2025-05-04 22:02:23 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListSystemTimeZones.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IGet { } /** @description Gets all of the system time zone IDs and names */ // @Route("/system/time-zones", "GET") // @Api(Description="Gets all of the system time zone IDs and names") export class ListSystemTimeZones implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ListSystemTimeZones'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }