/* Options: Date: 2026-04-05 18:21:01 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: GetETSDailyPriceChange.* //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-Daily-Price-Change", Verbs="GET") public static class GetETSDailyPriceChange implements IReturn { private static Object responseType = GetETSExternalDailyPriceChangeViewModel.class; public Object getResponseType() { return responseType; } } 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; } } }