We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d3b87e commit 7d68049Copy full SHA for 7d68049
Finance.Questrade.CSV/src/AccountActivityReader.cs
@@ -81,6 +81,7 @@ static AccountType ParseAccountType(string value)
81
"Individual RRSP" => AccountType.IndividualRRSP,
82
"Individual TFSA" => AccountType.IndividualTFSA,
83
"Individual margin" => AccountType.IndividualMargin,
84
+ "Individual FHSA" => AccountType.IndividualFHSA,
85
_ => throw new NotSupportedException(value),
86
};
87
}
Finance.Questrade/src/AccountType.cs
@@ -5,5 +5,6 @@ public enum AccountType
5
IndividualRRSP,
6
IndividualTFSA,
7
IndividualMargin,
8
+ IndividualFHSA,
9
10
0 commit comments