Interface CommentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface CommentServiceAsync.WithRawResponseA view of CommentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract CommentServiceAsync.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
CompletableFuture<HttpResponseFor<CaseActivityEntry>> create(String caseToken, TransactionMonitoringCaseCommentCreateParams params)
Returns a raw HTTP response for
post /v1/transaction_monitoring/cases/{case_token}/comments, but is otherwise the same as CommentServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<CaseActivityEntry>> create(String caseToken, TransactionMonitoringCaseCommentCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<CaseActivityEntry>> create(TransactionMonitoringCaseCommentCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<CaseActivityEntry>> create(TransactionMonitoringCaseCommentCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<CaseActivityEntry>> update(String commentToken, TransactionMonitoringCaseCommentUpdateParams params)
Returns a raw HTTP response for
patch /v1/transaction_monitoring/cases/{case_token}/comments/{comment_token}, but is otherwise the same as CommentServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<CaseActivityEntry>> update(String commentToken, TransactionMonitoringCaseCommentUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<CaseActivityEntry>> update(TransactionMonitoringCaseCommentUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<CaseActivityEntry>> update(TransactionMonitoringCaseCommentUpdateParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponse> delete(String commentToken, TransactionMonitoringCaseCommentDeleteParams params)
Returns a raw HTTP response for
delete /v1/transaction_monitoring/cases/{case_token}/comments/{comment_token}, but is otherwise the same as CommentServiceAsync.delete.
-
delete
CompletableFuture<HttpResponse> delete(String commentToken, TransactionMonitoringCaseCommentDeleteParams params, RequestOptions requestOptions)
-
delete
abstract CompletableFuture<HttpResponse> delete(TransactionMonitoringCaseCommentDeleteParams params, RequestOptions requestOptions)
-
-
-
-