-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AccessScope enum, reorder CreateAgreementRequest constructor
- Loading branch information
Showing
7 changed files
with
83 additions
and
47 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 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
28 changes: 28 additions & 0 deletions
28
src/RobinTTY.NordigenApiClient/Models/Responses/AccessScope.cs
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,28 @@ | ||
namespace RobinTTY.NordigenApiClient.Models.Responses; | ||
|
||
/// <summary> | ||
/// Access scopes can be used to limit the access to the 3 major data blocks the GoCardless API is offering. | ||
/// This feature is not supported by all banks, check <see cref="Institution.SupportedFeatures"/> to verify if it is. | ||
/// </summary> | ||
public enum AccessScope | ||
{ | ||
/// <summary> | ||
/// An undefined access scope. Assigned if the scope couldn't be matched to any known types. | ||
/// </summary> | ||
Undefined, | ||
|
||
/// <summary> | ||
/// Access scope required to access the balances of an account. | ||
/// </summary> | ||
Balances, | ||
|
||
/// <summary> | ||
/// Access scope required to access the transactions of an account. | ||
/// </summary> | ||
Transactions, | ||
|
||
/// <summary> | ||
/// Access scope needed to access account details. | ||
/// </summary> | ||
Details | ||
} |
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