Interface CheckService.WithRawResponse
-
- All Implemented Interfaces:
public interface CheckService.WithRawResponseA view of CheckService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CheckService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<CheckUpdateResponse>update(String submissionId, CheckUpdateParams params)Returns a raw HTTP response for put /notifications/{id}/{submissionId}/checks, but is otherwise the same as CheckService.update.HttpResponseFor<CheckUpdateResponse>update(String submissionId, CheckUpdateParams params, RequestOptions requestOptions)HttpResponseFor<CheckUpdateResponse>update(CheckUpdateParams params)abstract HttpResponseFor<CheckUpdateResponse>update(CheckUpdateParams params, RequestOptions requestOptions)HttpResponseFor<CheckListResponse>list(String submissionId, CheckListParams params)Returns a raw HTTP response for get /notifications/{id}/{submissionId}/checks, but is otherwise the same as CheckService.list.HttpResponseFor<CheckListResponse>list(String submissionId, CheckListParams params, RequestOptions requestOptions)HttpResponseFor<CheckListResponse>list(CheckListParams params)abstract HttpResponseFor<CheckListResponse>list(CheckListParams params, RequestOptions requestOptions)HttpResponsedelete(String submissionId, CheckDeleteParams params)Returns a raw HTTP response for delete /notifications/{id}/{submissionId}/checks, but is otherwise the same as CheckService.delete.HttpResponsedelete(String submissionId, CheckDeleteParams params, RequestOptions requestOptions)HttpResponsedelete(CheckDeleteParams params)abstract HttpResponsedelete(CheckDeleteParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract CheckService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
update
@MustBeClosed() HttpResponseFor<CheckUpdateResponse> update(String submissionId, CheckUpdateParams params)
Returns a raw HTTP response for
put /notifications/{id}/{submissionId}/checks, but is otherwise the same as CheckService.update.
-
update
@MustBeClosed() HttpResponseFor<CheckUpdateResponse> update(String submissionId, CheckUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<CheckUpdateResponse> update(CheckUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<CheckUpdateResponse> update(CheckUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CheckListResponse> list(String submissionId, CheckListParams params)
Returns a raw HTTP response for
get /notifications/{id}/{submissionId}/checks, but is otherwise the same as CheckService.list.
-
list
@MustBeClosed() HttpResponseFor<CheckListResponse> list(String submissionId, CheckListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CheckListResponse> list(CheckListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<CheckListResponse> list(CheckListParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponse delete(String submissionId, CheckDeleteParams params)
Returns a raw HTTP response for
delete /notifications/{id}/{submissionId}/checks, but is otherwise the same as CheckService.delete.
-
delete
@MustBeClosed() HttpResponse delete(String submissionId, CheckDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponse delete(CheckDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponse delete(CheckDeleteParams params, RequestOptions requestOptions)
-
-
-
-