/* Options: Date: 2025-12-11 14:52:22 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: EIAProductionSeriesByPlantRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/eia-production-request-by-plant", Verbs="POST") open class EIAProductionSeriesByPlantRequest { var startPlantId:Int? = null var timeGranularity:TimeGranularity? = null } enum class TimeGranularity(val value:Int) { Undefined(0), Hourly(1), Daily(2), Weekly(3), Monthy(4), Yearly(5), Fivemin(10), Tenmin(11), Fifteenmin(12), Halfhour(13), Quarterly(14), Twohours(21), Threehours(22), Fourhours(24), Sixhours(26), Eighthours(28), Twelvehours(32), Irregular(100), }