Mercurial > public > lazybear
comparison 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 |
comparison
equal
deleted
inserted
replaced
411:681fb377235e | 412:a7c9dd0c5822 |
---|---|
5 // Created by Dennis Concepción Martín on 7/6/21. | 5 // Created by Dennis Concepción Martín on 7/6/21. |
6 // | 6 // |
7 | 7 |
8 import SwiftUI | 8 import SwiftUI |
9 | 9 |
10 struct InsiderTransactionModel: Codable { | 10 struct InsiderTransactionModel: Codable, Hashable { |
11 var filingDate: String | 11 var filingDate: String |
12 var fullName: String | 12 var fullName: String |
13 var postShares: Int | 13 var postShares: Int? |
14 var reportedTitle: String? | 14 var reportedTitle: String? |
15 var transactionCode: String | 15 var transactionCode: String |
16 var transactionPrice: Float | 16 var transactionPrice: Float? |
17 var transactionShares: Int | 17 var transactionShares: Int? |
18 var transactionValue: Float | 18 var transactionValue: Float? |
19 } | 19 } |