File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed
publication/src/main/scala/hmda/publication/reports/disclosure Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,13 @@ case class D51(
19
19
respondentId : String ,
20
20
institutionName : String ,
21
21
table : String ,
22
- reportType : ReportTypeEnum ,
23
22
description : String ,
24
23
year : Int ,
25
24
reportDate : String ,
26
25
msa : MSAReport ,
27
26
applicantIncomes : List [ApplicantIncome ],
28
27
total : List [Disposition ]
29
- )
28
+ ) extends DisclosureReport
30
29
31
30
object D51 {
32
31
def apply (
@@ -45,7 +44,6 @@ object D51 {
45
44
respondentId,
46
45
institutionName,
47
46
" 5-1" ,
48
- Disclosure ,
49
47
description,
50
48
year,
51
49
reportDate,
Original file line number Diff line number Diff line change
1
+ package hmda .publication .reports .disclosure
2
+
3
+ import hmda .model .publication .reports .{MSAReport , ReportTypeEnum }
4
+ import hmda .model .publication .reports .ReportTypeEnum .Disclosure
5
+
6
+ trait DisclosureReport {
7
+
8
+ val respondentId : String
9
+ val institutionName : String
10
+ val description : String
11
+ val table : String
12
+ val year : Int
13
+ val msa : MSAReport
14
+
15
+ val reportType : ReportTypeEnum = Disclosure
16
+
17
+
18
+ }
You can’t perform that action at this time.
0 commit comments