/* Options: Date: 2026-04-05 18:20:44 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ETSCalculatorCalculate.* //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="/ETS/Calculator-Calculate", Verbs="GET") public static class ETSCalculatorCalculate implements IReturn { public Integer AllowancesRequired = null; public Integer ProductId = null; public BigDecimal VoyageFuelBurn = null; public Boolean BothEU = null; public Integer getAllowancesRequired() { return AllowancesRequired; } public ETSCalculatorCalculate setAllowancesRequired(Integer value) { this.AllowancesRequired = value; return this; } public Integer getProductId() { return ProductId; } public ETSCalculatorCalculate setProductId(Integer value) { this.ProductId = value; return this; } public BigDecimal getVoyageFuelBurn() { return VoyageFuelBurn; } public ETSCalculatorCalculate setVoyageFuelBurn(BigDecimal value) { this.VoyageFuelBurn = value; return this; } public Boolean isBothEU() { return BothEU; } public ETSCalculatorCalculate setBothEU(Boolean value) { this.BothEU = value; return this; } private static Object responseType = GetETSCalculationViewModel.class; public Object getResponseType() { return responseType; } } public static class GetETSCalculationViewModel { public Integer AllowancesRequired = null; public String FormulaExplanation = null; public Integer getAllowancesRequired() { return AllowancesRequired; } public GetETSCalculationViewModel setAllowancesRequired(Integer value) { this.AllowancesRequired = value; return this; } public String getFormulaExplanation() { return FormulaExplanation; } public GetETSCalculationViewModel setFormulaExplanation(String value) { this.FormulaExplanation = value; return this; } } }