Skip to content

Commit

Permalink
Remove unnecessary access modifiers from interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTTY committed May 15, 2024
1 parent 4db7ca5 commit e6ba24d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Task<NordigenApiResponse<Agreement, BasicResponse>> GetAgreement(string id,
/// (balances, transactions and details) will be requested.</param>
/// <param name="cancellationToken">Optional token to signal cancellation of the operation.</param>
/// <returns>A <see cref="NordigenApiResponse{TResponse, TError}" /> containing the created <see cref="Agreement" />.</returns>
public Task<NordigenApiResponse<Agreement, CreateAgreementError>> CreateAgreement(string institutionId,
Task<NordigenApiResponse<Agreement, CreateAgreementError>> CreateAgreement(string institutionId,
uint accessValidForDays = 90, uint maxHistoricalDays = 90, List<AccessScope>? accessScope = null,
CancellationToken cancellationToken = default);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Task<NordigenApiResponse<List<Institution>, BasicResponse>> GetInstitutions(stri
/// A <see cref="NordigenApiResponse{TResponse, TError}" /> containing a list of supported institutions if the
/// request was successful.
/// </returns>
public Task<NordigenApiResponse<List<Institution>, BasicResponse>> GetInstitutions(SupportedCountry country,
Task<NordigenApiResponse<List<Institution>, BasicResponse>> GetInstitutions(SupportedCountry country,
bool? accessScopesSupported = null, bool? accountSelectionSupported = null,
bool? businessAccountsSupported = null, bool? cardAccountsSupported = null,
bool? corporateAccountsSupported = null, bool? privateAccountsSupported = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Task<NordigenApiResponse<Requisition, BasicResponse>> GetRequisition(string id,
/// .</param>
/// <param name="cancellationToken">Optional token to signal cancellation of the operation.</param>
/// <returns>A <see cref="NordigenApiResponse{TResponse, TError}" /> which contains the created requisition.</returns>
public Task<NordigenApiResponse<Requisition, CreateRequisitionError>> CreateRequisition(string institutionId,
Task<NordigenApiResponse<Requisition, CreateRequisitionError>> CreateRequisition(string institutionId,
Uri redirect, Guid? agreementId = null, string? reference = null, string userLanguage = "EN",
string? socialSecurityNumber = null, bool accountSelection = false, bool redirectImmediate = false,
CancellationToken cancellationToken = default);
Expand Down

0 comments on commit e6ba24d

Please sign in to comment.