Skip to content

Commit bb62d1e

Browse files
authored
Added empty object for HttpClient
1 parent 0cc8057 commit bb62d1e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Src/Notion.Client/Api/Authentication/RevokeToken/AuthenticationClient.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ public async Task RevokeTokenAsync(
1212
{
1313
var body = (IRevokeTokenBodyParameters)revokeTokenRequest;
1414

15-
await _client.PostAsync<HttpResponseMessage>(
15+
await _client.PostAsync<RevokeTokenResponse>(
1616
ApiEndpoints.AuthenticationUrls.RevokeToken(),
1717
body,
1818
cancellationToken: cancellationToken
1919
);
2020
}
2121
}
22+
23+
internal class RevokeTokenResponse
24+
{
25+
}
2226
}

0 commit comments

Comments
 (0)