/* Options: Date: 2025-12-13 06:00:42 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: EIAProductionSeriesRequest.* //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", Verbs="POST") open class EIAProductionSeriesRequest { var timeGranularity:TimeGranularity? = null var date:Date? = 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), }