Skip to content

Commit

Permalink
Update overload to new signature
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTTY committed Jul 28, 2024
1 parent 2d76fe7 commit 5ccba7a
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,14 @@ public async Task<NordigenApiResponse<List<Institution>, BasicResponse>> GetInst
bool? accessScopesSupported = null, bool? accountSelectionSupported = null,
bool? businessAccountsSupported = null, bool? cardAccountsSupported = null,
bool? corporateAccountsSupported = null, bool? privateAccountsSupported = null,
bool? readRefundAccountSupported = null, bool? paymentsEnabled = null, bool? paymentSubmissionSupported = null,
bool? readRefundAccountSupported = null, bool? readDebtorAccountSupported = null,
bool? paymentsEnabled = null, bool? paymentSubmissionSupported = null,
bool? pendingTransactionsSupported = null, bool? ssnVerificationSupported = null,
CancellationToken cancellationToken = default) =>
await GetInstitutions(country.GetDescription(), accessScopesSupported, accountSelectionSupported,
businessAccountsSupported, cardAccountsSupported, corporateAccountsSupported, privateAccountsSupported,
readRefundAccountSupported, paymentsEnabled, paymentSubmissionSupported, pendingTransactionsSupported,
ssnVerificationSupported, cancellationToken);
readRefundAccountSupported, readDebtorAccountSupported, paymentsEnabled, paymentSubmissionSupported,
pendingTransactionsSupported, ssnVerificationSupported, cancellationToken);

/// <inheritdoc />
public async Task<NordigenApiResponse<Institution, BasicResponse>> GetInstitution(string id,
Expand Down

0 comments on commit 5ccba7a

Please sign in to comment.