/* Options: Date: 2025-12-13 03:57:15 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: ProductioDataSyncRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/production-data-sync", Verbs="POST") open class ProductioDataSyncRequest { var coordId:Int? = null var sourceType:ProductionSourceType? = null var month:Int? = null } enum class ProductionSourceType(val value:Int) { Undefined(0), Solar(1), Wind(2), Hybrid(10), }