-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8726f3
commit de23bf1
Showing
10 changed files
with
139 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
namespace Going.Plaid.Entity; | ||
|
||
/// <summary> | ||
/// <para>This enum describes the reason a consumer report is created for</para> | ||
/// </summary> | ||
public enum ConsumerReportPermissiblePurpose | ||
{ | ||
/// <summary> | ||
/// <para>In connection with a consumer credit transaction for the review or collection of an account pursuant to FCRA Section 604(a)(3)(A).</para> | ||
/// </summary> | ||
[EnumMember(Value = "ACCOUNT_REVIEW_CREDIT")] | ||
AccountReviewCredit, | ||
|
||
/// <summary> | ||
/// <para>For a legitimate business need of the information to review a non-credit account provided primarily for personal, family, or household purposes to determine whether the consumer continues to meet the terms of the account pursuant to FCRA Section 604(a)(3)(F)(2).</para> | ||
/// </summary> | ||
[EnumMember(Value = "ACCOUNT_REVIEW_NON_CREDIT")] | ||
AccountReviewNonCredit, | ||
|
||
/// <summary> | ||
/// <para>For employment purposes pursuant to FCRA 604(a)(3)(B), including hiring, retention and promotion purposes.</para> | ||
/// </summary> | ||
[EnumMember(Value = "EMPLOYMENT")] | ||
Employment, | ||
|
||
/// <summary> | ||
/// <para>In connection with a credit transaction initiated by and involving the consumer pursuant to FCRA Section 604(a)(3)(A).</para> | ||
/// </summary> | ||
[EnumMember(Value = "EXTENSION_OF_CREDIT")] | ||
ExtensionOfCredit, | ||
|
||
/// <summary> | ||
/// <para>For a legitimate business need in connection with a business transaction initiated by the consumer primarily for personal, family, or household purposes in connection with a property rental assessment pursuant to FCRA Section 604(a)(3)(F)(i).</para> | ||
/// </summary> | ||
[EnumMember(Value = "LEGITIMATE_BUSINESS_NEED_TENANT_SCREENING")] | ||
LegitimateBusinessNeedTenantScreening, | ||
|
||
/// <summary> | ||
/// <para>For a legitimate business need in connection with a business transaction made primarily for personal, family, or household initiated by the consumer pursuant to FCRA Section 604(a)(3)(F)(i).</para> | ||
/// </summary> | ||
[EnumMember(Value = "LEGITIMATE_BUSINESS_NEED_TENANT_OTHER")] | ||
LegitimateBusinessNeedTenantOther, | ||
|
||
/// <summary> | ||
/// <para>In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), to evaluate an application’s profile to make an offer to the consumer.</para> | ||
/// </summary> | ||
[EnumMember(Value = "WRITTEN_INSTRUCTION_PREQUALIFICATION")] | ||
WrittenInstructionPrequalification, | ||
|
||
/// <summary> | ||
/// <para>In accordance with the written instructions of the consumer pursuant to FCRA Section 604(a)(2), such as when an individual agrees to act as a guarantor or assumes personal liability for a consumer, business, or commercial loan.</para> | ||
/// </summary> | ||
[EnumMember(Value = "WRITTEN_INSTRUCTION_OTHER")] | ||
WrittenInstructionOther, | ||
|
||
/// <summary> | ||
/// <para>Catch-all for unknown values returned by Plaid. If you encounter this, please check if there is a later version of the Going.Plaid library.</para> | ||
/// </summary> | ||
[EnumMember(Value = "undefined")] | ||
Undefined, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
namespace Going.Plaid.Entity; | ||
|
||
/// <summary> | ||
/// <para>Describes the frequency of the transaction stream.</para> | ||
/// </summary> | ||
public enum RecurringFrequency | ||
{ | ||
/// <summary> | ||
/// <para>Assigned to a transaction stream that isn't recurring in nature.</para> | ||
/// </summary> | ||
[EnumMember(Value = "UNKNOWN")] | ||
Unknown, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that occurs approximately every week.</para> | ||
/// </summary> | ||
[EnumMember(Value = "WEEKLY")] | ||
Weekly, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that occurs approximately every 2 weeks.</para> | ||
/// </summary> | ||
[EnumMember(Value = "BIWEEKLY")] | ||
Biweekly, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that occurs approximately twice per month. This frequency is typically seen for inflow transaction streams.</para> | ||
/// </summary> | ||
[EnumMember(Value = "SEMI_MONTHLY")] | ||
SemiMonthly, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that occurs approximately every month.</para> | ||
/// </summary> | ||
[EnumMember(Value = "MONTHLY")] | ||
Monthly, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that occurs approximately every year.</para> | ||
/// </summary> | ||
[EnumMember(Value = "ANNUALLY")] | ||
Annually, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that occurs approximately every day.</para> | ||
/// </summary> | ||
[EnumMember(Value = "DAILY")] | ||
Daily, | ||
|
||
/// <summary> | ||
/// <para>Assigned to a transaction stream that varies in recurrence frequency. This frequency is typically seen for inflow streams in the gig economy.</para> | ||
/// </summary> | ||
[EnumMember(Value = "DYNAMIC")] | ||
Dynamic, | ||
|
||
/// <summary> | ||
/// <para>Catch-all for unknown values returned by Plaid. If you encounter this, please check if there is a later version of the Going.Plaid library.</para> | ||
/// </summary> | ||
[EnumMember(Value = "undefined")] | ||
Undefined, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters