/* Options: Date: 2025-12-06 05:04:45 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.bengabet.webhop.biz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGlobalCodePotConfiguration.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ThresholdInterval { public start: number; public end: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GCPConfiguration { public isActive: boolean; public interval: ThresholdInterval; public pct: number; public reservePct: number; public totalPct: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GlobalCodePotConfigurations { public id: string; public cfg: GCPConfiguration; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/global-code-pot/config") export class GetGlobalCodePotConfiguration implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetGlobalCodePotConfiguration'; } public getMethod() { return 'POST'; } public createResponse() { return new GlobalCodePotConfigurations(); } }