/* Options: Date: 2025-12-13 05:45:35 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ShadowPricesIsoNeByDateRangeRequest.* //ExcludeTypes: //DefaultImports: */ export enum PriceMarketType { Undefined = 0, Realtime = 1, DayAhead = 10, DART = 101, } export enum IsoNeShadowPriceRealtimeMarketType { Undefined = 'Undefined', FiveMin = 'FiveMin', FifteenMin = 'FifteenMin', } // @Route("/shadow-price/iso-ne/date-range", "POST") export class ShadowPricesIsoNeByDateRangeRequest { public start: string; public end: string; public marketType: PriceMarketType; public isoNeMarketType: IsoNeShadowPriceRealtimeMarketType; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ShadowPricesIsoNeByDateRangeRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }