/* Options: Date: 2025-12-13 06:02:48 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: LmpParquetSyncJobRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/jobs/lmp-parquet-sync", Verbs="POST") open class LmpParquetSyncJobRequest { var provider:DataProvider? = null var marketType:PriceMarketType? = null @SerializedName("type") var Type:String? = null } enum class DataProvider(val value:Int) { Undefined(0), Spp(1), Ercot(2), Miso(3), Caiso(4), Pjm(5), Isone(6), Nyiso(7), Nw(8), Sw(9), Se(10), Aeso(11), Ieso(12), Cenace(20), Noniso(99), Eia(100), Pnm(150), Nrel(200), Noaa(210), Entsoe(1000), Epias(1010), Self(10000), } enum class PriceMarketType(val value:Int) { Undefined(0), Realtime(1), DayAhead(10), Dart(101), }