/* Options: Date: 2026-04-05 18:27:02 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: GetETSDailyPriceChange.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/External/Get-ETS-Daily-Price-Change", Verbs="GET") open class GetETSDailyPriceChange : IReturn { companion object { private val responseType = GetETSExternalDailyPriceChangeViewModel::class.java } override fun getResponseType(): Any? = GetETSDailyPriceChange.responseType } open class GetETSExternalDailyPriceChangeViewModel { var Id:Int? = null var Date:Date? = null var PreviousClose:Double? = null var ClosePrice:Double? = null var PercentageChange:Double? = null var EuroChange:Double? = null }