/* Options: Date: 2025-12-13 05:51:23 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ShadowPricesIsoNeByDateRangeRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/shadow-price/iso-ne/date-range", Verbs="POST") open class ShadowPricesIsoNeByDateRangeRequest { var start:Date? = null var end:Date? = null var marketType:PriceMarketType? = null var isoNeMarketType:IsoNeShadowPriceRealtimeMarketType? = null } enum class PriceMarketType(val value:Int) { Undefined(0), Realtime(1), DayAhead(10), Dart(101), } enum class IsoNeShadowPriceRealtimeMarketType { Undefined, FiveMin, FifteenMin, }