File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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:
666666partial 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
You can’t perform that action at this time.
0 commit comments