-
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.
- Loading branch information
Showing
23 changed files
with
225 additions
and
85 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
docs/docs/api-reference/events/token-pair-updated-event-args.md
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,23 @@ | ||
--- | ||
title: TokenPairUpdatedEventArgs | ||
--- | ||
|
||
Provides data for the [`NordigenClient.TokenPairUpdated`](/docs/api-reference/nordigen-client#tokenpairupdated---eventhandlertokenpairupdatedeventargs) event. | ||
|
||
## Properties | ||
|
||
### `JsonWebTokenPair` - [JsonWebTokenPair](/docs/api-reference/json-web-tokens/json-web-token-pair) | ||
|
||
The updated `JsonWebTokenPair`. | ||
|
||
## Constructor | ||
|
||
```csharp | ||
public TokenPairUpdatedEventArgs(JsonWebTokenPair jsonWebTokenPair) | ||
``` | ||
|
||
### Parameters | ||
|
||
#### `jsonWebTokenPair` - [JsonWebTokenPair](/docs/api-reference/json-web-tokens/json-web-token-pair) | ||
|
||
The updated `JsonWebTokenPair`. |
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,29 @@ | ||
--- | ||
title: NordigenClientCredentials | ||
--- | ||
|
||
The `NordigenClientCredentials` class represents user secrets as provided by GoCardless. Used to acquire access-tokens to the API. | ||
|
||
## Properties | ||
|
||
### `SecretId` - [string](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/reference-types#the-string-type) | ||
|
||
Secret GoCardless API credential id. | ||
|
||
### `SecretKey` - [string](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/reference-types#the-string-type) | ||
|
||
Secret GoCardless API credential key. | ||
|
||
## Constructor | ||
|
||
```csharp | ||
public NordigenClientCredentials(string secretId, string secretKey) | ||
``` | ||
|
||
### Parameters | ||
|
||
#### `secretId` - [string](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/reference-types#the-string-type) | ||
|
||
Secret GoCardless API credential id. | ||
|
||
#### `secretKey` - [string](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/reference-types#the-string-type) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,47 @@ | ||
--- | ||
title: RequisitionStatus | ||
title: RequisitionStatus Enum | ||
--- | ||
|
||
Indicates the status of a [`Requisition`](/docs/api-reference/responses/requisition). A requisition can assume one of nine statuses. The sequence of statuses is given in stages. Reference: [GoCardless Documentation](https://developer.gocardless.com/bank-account-data/statuses) | ||
|
||
## Fields | ||
|
||
### Undefined | ||
|
||
An undefined requisition status. Assigned if the status couldn't be matched to any known option. | ||
|
||
### Created | ||
|
||
Indicates that the requisition has been successfully created (stage 1). | ||
|
||
### GivingConsent | ||
|
||
Indicates that the account holder is currently in the process of giving consent through Nordigen's consent screen (stage 2). | ||
|
||
### UndergoingAuthentication | ||
|
||
Indicates that the account holder has been redirected to the financial institution for authentication (stage 3). | ||
|
||
### Rejected | ||
|
||
Indicates that either the SSN verification has failed or the account holder has entered incorrect credentials (stage 4). | ||
|
||
### SelectingAccounts | ||
|
||
Indicates that the account holder is currently in the process of selecting accounts (stage 5). | ||
|
||
### GrantingAccess | ||
|
||
Indicates that the end user is currently in the process of granting access to their account information (stage 6). | ||
|
||
### Linked | ||
|
||
Indicates that an account has been successfully linked to the requisition (stage 7). | ||
|
||
### Suspended | ||
|
||
Indicates that the requisition is suspended due to numerous consecutive errors that happened while accessing one of the linked accounts (stage 8). | ||
|
||
### Expired | ||
|
||
Indicates that access to the linked accounts has expired as defined in the end user agreement (stage 9). |
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
Oops, something went wrong.