/* Options: Date: 2026-04-05 18:16:53 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: GetETSPriceChangesChartData.* //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="/External/Get-ETS-Price-Changes-Chart-Data", Verbs="GET") public static class GetETSPriceChangesChartData { public Date DateFrom = null; public Date DateTo = null; public Date getDateFrom() { return DateFrom; } public GetETSPriceChangesChartData setDateFrom(Date value) { this.DateFrom = value; return this; } public Date getDateTo() { return DateTo; } public GetETSPriceChangesChartData setDateTo(Date value) { this.DateTo = value; return this; } } public static class GetETSExternalDailyPriceChangeViewModel { public Integer Id = null; public Date Date = null; public Double PreviousClose = null; public Double ClosePrice = null; public Double PercentageChange = null; public Double EuroChange = null; public Integer getId() { return Id; } public GetETSExternalDailyPriceChangeViewModel setId(Integer value) { this.Id = value; return this; } public Date getDate() { return Date; } public GetETSExternalDailyPriceChangeViewModel setDate(Date value) { this.Date = value; return this; } public Double getPreviousClose() { return PreviousClose; } public GetETSExternalDailyPriceChangeViewModel setPreviousClose(Double value) { this.PreviousClose = value; return this; } public Double getClosePrice() { return ClosePrice; } public GetETSExternalDailyPriceChangeViewModel setClosePrice(Double value) { this.ClosePrice = value; return this; } public Double getPercentageChange() { return PercentageChange; } public GetETSExternalDailyPriceChangeViewModel setPercentageChange(Double value) { this.PercentageChange = value; return this; } public Double getEuroChange() { return EuroChange; } public GetETSExternalDailyPriceChangeViewModel setEuroChange(Double value) { this.EuroChange = value; return this; } } }