Skip to content

Commit 7d68049

Browse files
committed
Add new FHSA account type
1 parent 6d3b87e commit 7d68049

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Finance.Questrade.CSV/src/AccountActivityReader.cs

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ static AccountType ParseAccountType(string value)
8181
"Individual RRSP" => AccountType.IndividualRRSP,
8282
"Individual TFSA" => AccountType.IndividualTFSA,
8383
"Individual margin" => AccountType.IndividualMargin,
84+
"Individual FHSA" => AccountType.IndividualFHSA,
8485
_ => throw new NotSupportedException(value),
8586
};
8687
}

Finance.Questrade/src/AccountType.cs

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ public enum AccountType
55
IndividualRRSP,
66
IndividualTFSA,
77
IndividualMargin,
8+
IndividualFHSA,
89
}
910
}

0 commit comments

Comments
 (0)