Skip to content

Commit 1434bc9

Browse files
committedNov 24, 2024·
Update response type as well
1 parent a8a13b5 commit 1434bc9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ This repository contains the source for ServiceStack plugins for the leading And
1010
Added new ServiceClient APIs:
1111

1212
```java
13-
<T> TResponse postFileWithRequest(IReturn<T> request, FileUpload file);
14-
<T> TResponse postFileWithRequest(Object request, FileUpload file, Object responseType);
15-
<T> TResponse postFileWithRequest(String path, Object request, FileUpload file, Object responseType);
13+
<T> T postFileWithRequest(IReturn<T> request, FileUpload file);
14+
<T> T postFileWithRequest(Object request, FileUpload file, Object responseType);
15+
<T> T postFileWithRequest(String path, Object request, FileUpload file, Object responseType);
1616

17-
<T> TResponse postFilesWithRequest(IReturn<T> request, FileUpload[] files);
18-
<T> TResponse postFilesWithRequest(Object request, FileUpload[] files, Object responseType);
19-
<T> TResponse postFilesWithRequest(String path, Object request, FileUpload[] files, Object responseType);
17+
<T> T postFilesWithRequest(IReturn<T> request, FileUpload[] files);
18+
<T> T postFilesWithRequest(Object request, FileUpload[] files, Object responseType);
19+
<T> T postFilesWithRequest(String path, Object request, FileUpload[] files, Object responseType);
2020
```
2121

2222
Added new AsyncServiceClient APIs:

0 commit comments

Comments
 (0)
Please sign in to comment.