/* Options: Date: 2025-12-13 05:42: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: EiaProductionMissingJobRequest.* //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="/eia-production-missing-job", Verbs="POST") public static class EiaProductionMissingJobRequest { public Integer plantId = null; public Integer getPlantId() { return plantId; } public EiaProductionMissingJobRequest setPlantId(Integer value) { this.plantId = value; return this; } } }