comparison LazyBear/Views/Profile/Networking/ProfileResponse.swift @ 378:6802c2393203

Implementing ProfileView (Watchlists)
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 21 Apr 2021 23:12:56 +0200
parents d01859776fe6
children 9b7af8e83d12
comparison
equal deleted inserted replaced
377:d01859776fe6 378:6802c2393203
9 9
10 struct ProfileResponse: Codable { 10 struct ProfileResponse: Codable {
11 var intradayPrices: [String: [IntradayPriceModel]]? 11 var intradayPrices: [String: [IntradayPriceModel]]?
12 var quotes: [String: QuoteModel]? 12 var quotes: [String: QuoteModel]?
13 13
14 private enum CodingKeys : String, CodingKey { 14 private enum CodingKeys : String, CodingKey {
15 case intradayPrices = "intraday_prices" 15 case intradayPrices = "intraday_prices"
16 case quotes
16 } 17 }
17 } 18 }