/* Options: Date: 2026-04-05 18:22:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ETSForwardOptions.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/ETS/Forward-Options", Verbs="GET") open class ETSForwardOptions : IReturn { var QuoteId:String? = null var Quantity:Int? = null var MonthNumber:Int? = null var StartDate:String? = null companion object { private val responseType = ETSForwardOptionsViewModel::class.java } override fun getResponseType(): Any? = ETSForwardOptions.responseType } open class ETSForwardOptionsViewModel { var QuoteGuid:UUID? = null var Quantity:Int? = null var MonthNumber:Int? = null var StartDate:Date? = null var InvoicedBy:String? = null var SelectedDepositPercentage:String? = null var SelectedForwardOption:String? = null var ThirdPartyName:String? = null var CurrentServerTime:Date? = null var IsBridgeClient:Boolean? = null var ETSQuote:ETSQuoteViewModel? = null var GetETSForwardDepositOptionsForEntityContact:ArrayList = ArrayList() } open class ETSQuoteViewModel { var Id:Int? = null var QuoteGuid:UUID? = null var QuoteDateTime:Date? = null var Quantity:Int? = null var GreyEpochPrice:Double? = null var GreyEpochFee:Double? = null var PayNowTotal:Double? = null var ServiceFeeType:String? = null var ServiceFee:Double? = null var FinanceStatus:String? = null var FinanceFee:Double? = null var FinanceTotal:Double? = null var ServiceFeeDescription:String? = null var FinancePercentage:Double? = null var ServiceFeeValue:Double? = null var DeviceType:String? = null } open class GetETSForwardDepositOptionsForEntityContactViewModel { var InvoiceFrom:String? = null var AllowanceCostEach:Double? = null var DepAvailable:Boolean? = null var CreditAvailable:Boolean? = null var MarkupPercentage:Double? = null var EUAPrice:Double? = null var OrderTotalValue:Double? = null var DepositPercentage:Double? = null var DepositTotalValue:Double? = null var MarginPercentageCovered:Double? = null var MarginCoveredTo:Double? = null var ServiceFeeType:String? = null var TotalServiceFee:Double? = null var DepositCashRequired:Double? = null var MarginCashRisk:Double? = null var TotalCashRisk:Double? = null var DepositTitle:String? = null var HeaderBarText:String? = null var HeaderBarValue:String? = null var MoreDetailsString:String? = null var PriceToBridge:Double? = null var BridgeDepositValue:Double? = null var ExternalFeePerTicket:Double? = null var OurCommission:Double? = null var Sort:Int? = null var ServiceFeeDescription:String? = null var ApiToUse:String? = null var AitherSettlementUUID:String? = null }