Interface MatterPartyService.WithRawResponse
-
- All Implemented Interfaces:
public interface MatterPartyService.WithRawResponseA view of MatterPartyService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MatterPartyService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponse create(String id, MatterPartyCreateParams params)
Returns a raw HTTP response for
post /matters/v1/{id}/parties, but is otherwise the same as MatterPartyService.create.
-
create
@MustBeClosed() HttpResponse create(String id, MatterPartyCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponse create(MatterPartyCreateParams params)
-
create
@MustBeClosed() abstract HttpResponse create(MatterPartyCreateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponse list(String id)
Returns a raw HTTP response for
get /matters/v1/{id}/parties, but is otherwise the same as MatterPartyService.list.
-
list
@MustBeClosed() HttpResponse list(String id, MatterPartyListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponse list(String id, MatterPartyListParams params)
-
list
@MustBeClosed() abstract HttpResponse list(MatterPartyListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponse list(MatterPartyListParams params)
-
list
@MustBeClosed() HttpResponse list(String id, RequestOptions requestOptions)
-
-
-
-