Mercurial > public > lazybear
comparison LazyBear/Global Models/InsiderTransactionModel.swift @ 411:681fb377235e
Implementing insider transactions
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Mon, 07 Jun 2021 20:59:52 +0200 |
parents | |
children | a7c9dd0c5822 |
comparison
equal
deleted
inserted
replaced
410:e24c9ca71824 | 411:681fb377235e |
---|---|
1 // | |
2 // InsiderTransactionModel.swift | |
3 // LazyBear | |
4 // | |
5 // Created by Dennis Concepción Martín on 7/6/21. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct InsiderTransactionModel: Codable { | |
11 var filingDate: String | |
12 var fullName: String | |
13 var postShares: Int | |
14 var reportedTitle: String? | |
15 var transactionCode: String | |
16 var transactionPrice: Float | |
17 var transactionShares: Int | |
18 var transactionValue: Float | |
19 } |