Mercurial > public > lazybear
diff LazyBear/Global Models/InsiderTransactionModel.swift @ 412:a7c9dd0c5822
Main insider view implemented
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Tue, 08 Jun 2021 11:46:58 +0200 |
parents | 681fb377235e |
children | 428109b1e3f0 |
line wrap: on
line diff
--- a/LazyBear/Global Models/InsiderTransactionModel.swift Mon Jun 07 20:59:52 2021 +0200 +++ b/LazyBear/Global Models/InsiderTransactionModel.swift Tue Jun 08 11:46:58 2021 +0200 @@ -7,13 +7,13 @@ import SwiftUI -struct InsiderTransactionModel: Codable { +struct InsiderTransactionModel: Codable, Hashable { var filingDate: String var fullName: String - var postShares: Int + var postShares: Int? var reportedTitle: String? var transactionCode: String - var transactionPrice: Float - var transactionShares: Int - var transactionValue: Float + var transactionPrice: Float? + var transactionShares: Int? + var transactionValue: Float? }