Skip to content

Commit 111c0f8

Browse files
Update README.md
Updating README for new Restsharp version
1 parent bd51442 commit 111c0f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ partial class ApiClient
618618
_encryptionInterceptor = RestSharpEncryptionInterceptor.From(config);
619619
}
620620

621-
partial void InterceptRequest(IRestRequest request)
621+
partial void InterceptRequest(RestRequest request)
622622
{
623623
_encryptionInterceptor.InterceptRequest(request);
624624
_signer.Sign(_basePath, request);
@@ -666,8 +666,8 @@ See also:
666666
partial class ApiClient
667667
{
668668
public RestSharpFieldLevelEncryptionInterceptor EncryptionInterceptor { private get; set; }
669-
partial void InterceptRequest(IRestRequest request) => EncryptionInterceptor.InterceptRequest(request);
670-
partial void InterceptResponse(IRestRequest request, IRestResponse response) => EncryptionInterceptor.InterceptResponse(response);
669+
partial void InterceptRequest(RestRequest request) => EncryptionInterceptor.InterceptRequest(request);
670+
partial void InterceptResponse(RestRequest request, RestResponse response) => EncryptionInterceptor.InterceptResponse(response);
671671
}
672672
```
673673

0 commit comments

Comments
 (0)