/* Options: Date: 2026-01-14 10:39:40 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://iso-api.adumen.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SyncNodeFilesRequest.* //ExcludeTypes: //DefaultImports: */ export enum PriceMarketType { Undefined = 0, Realtime = 1, DayAhead = 10, DART = 101, } // @Route("/awss3-sync-node-files", "Post") export class SyncNodeFilesRequest { public type: string; public marketType: PriceMarketType; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SyncNodeFilesRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }