Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: add missing optional parameter for VerifyClient #517

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Vonage/Verify/VerifyClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Threading.Tasks;
using System.Threading.Tasks;
using Vonage.Request;

namespace Vonage.Verify;
Expand All @@ -15,7 +15,7 @@ public void ValidateVerifyResponse(VerifyResponseBase response)
{
throw new VonageVerifyResponseException(
$"Verify Request Failed with status: {response.Status} and Error Text: {response.ErrorText}")
{Response = response};
{ Response = response };
}
}

Expand Down Expand Up @@ -93,7 +93,7 @@ public VerifyResponse VerifyRequestWithPSD2(Psd2Request request, Credentials cre
return response;
}

public async Task<VerifyResponse> VerifyRequestWithPSD2Async(Psd2Request request, Credentials creds)
public async Task<VerifyResponse> VerifyRequestWithPSD2Async(Psd2Request request, Credentials creds = null)
{
var response = await new ApiRequest(creds ?? this.Credentials)
.DoPostRequestUrlContentFromObjectAsync<VerifyResponse>(
Expand Down
Loading