/* Options: Date: 2025-12-13 05:42:54 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: ShadowPricesNyIsoFilesRequest.* //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/ny-iso/files", Verbs="POST") open class ShadowPricesNyIsoFilesRequest { var start:Date? = null var end:Date? = null var marketType:PriceMarketType? = null var relationType:CongestionRelationType? = null } enum class PriceMarketType(val value:Int) { Undefined(0), Realtime(1), DayAhead(10), Dart(101), } enum class CongestionRelationType { Undefined, InterfaceLimitsFlows, ParFlows, ShadowPriceDayahead, ShadowPriceRealtime, }