/* Options: Date: 2026-04-05 18:26:51 SwiftVersion: 5.0 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ETSPriceDayChange.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/ETS/Price-Day-Change", "GET") public class ETSPriceDayChange : IReturn, Codable { public typealias Return = GetETSPriceDayChangeViewModel public var entityContactId:Int required public init(){} } public class GetETSPriceDayChangeViewModel : Codable { public var id:Int public var today:Date public var previousClose:Double public var closePrice:Double public var percentageChange:Double public var eurChange:Double public var labelDescription:String public var showGetQuoteButton:Bool public var showPriceSection:Bool public var minutesRemaining:Int public var marketCountdownLabel:String public var isRegistered:String required public init(){} }