/* Options: Date: 2025-12-13 05:45:39 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProductioDataSyncRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/production-data-sync", Verbs="POST") public static class ProductioDataSyncRequest { public Integer coordId = null; public ProductionSourceType sourceType = null; public Integer month = null; public Integer getCoordId() { return coordId; } public ProductioDataSyncRequest setCoordId(Integer value) { this.coordId = value; return this; } public ProductionSourceType getSourceType() { return sourceType; } public ProductioDataSyncRequest setSourceType(ProductionSourceType value) { this.sourceType = value; return this; } public Integer getMonth() { return month; } public ProductioDataSyncRequest setMonth(Integer value) { this.month = value; return this; } } public static enum ProductionSourceType { Undefined(0), Solar(1), Wind(2), Hybrid(10); private final int value; ProductionSourceType(final int intValue) { value = intValue; } public int getValue() { return value; } } }