Interface PartService.WithRawResponse
-
- All Implemented Interfaces:
public interface PartService.WithRawResponse
A view of PartService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<UploadPart>
create(String uploadId, PartCreateParams params)
Returns a raw HTTP response for post /uploads/{upload_id}/parts
, but is otherwise the same as PartService.create.HttpResponseFor<UploadPart>
create(String uploadId, PartCreateParams params, RequestOptions requestOptions)
HttpResponseFor<UploadPart>
create(PartCreateParams params)
abstract HttpResponseFor<UploadPart>
create(PartCreateParams params, RequestOptions requestOptions)
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<UploadPart> create(String uploadId, PartCreateParams params)
Returns a raw HTTP response for
post /uploads/{upload_id}/parts
, but is otherwise the same as PartService.create.
-
create
@MustBeClosed() HttpResponseFor<UploadPart> create(String uploadId, PartCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<UploadPart> create(PartCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<UploadPart> create(PartCreateParams params, RequestOptions requestOptions)
-
-
-
-