Interface CheckService
-
- All Implemented Interfaces:
public interface CheckService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceCheckService.WithRawResponseA view of CheckService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract CheckService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract CheckServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CheckUpdateResponseupdate(String submissionId, CheckUpdateParams params)Replace the checks for a notification template submission. CheckUpdateResponseupdate(String submissionId, CheckUpdateParams params, RequestOptions requestOptions)CheckUpdateResponseupdate(CheckUpdateParams params)abstract CheckUpdateResponseupdate(CheckUpdateParams params, RequestOptions requestOptions)CheckListResponselist(String submissionId, CheckListParams params)Retrieve the checks for a notification template submission. CheckListResponselist(String submissionId, CheckListParams params, RequestOptions requestOptions)CheckListResponselist(CheckListParams params)abstract CheckListResponselist(CheckListParams params, RequestOptions requestOptions)Unitdelete(String submissionId, CheckDeleteParams params)Cancel a notification template submission. Unitdelete(String submissionId, CheckDeleteParams params, RequestOptions requestOptions)Unitdelete(CheckDeleteParams params)abstract Unitdelete(CheckDeleteParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract CheckService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract CheckService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
update
CheckUpdateResponse update(String submissionId, CheckUpdateParams params)
Replace the checks for a notification template submission.
-
update
CheckUpdateResponse update(String submissionId, CheckUpdateParams params, RequestOptions requestOptions)
-
update
CheckUpdateResponse update(CheckUpdateParams params)
-
update
abstract CheckUpdateResponse update(CheckUpdateParams params, RequestOptions requestOptions)
-
list
CheckListResponse list(String submissionId, CheckListParams params)
Retrieve the checks for a notification template submission.
-
list
CheckListResponse list(String submissionId, CheckListParams params, RequestOptions requestOptions)
-
list
CheckListResponse list(CheckListParams params)
-
list
abstract CheckListResponse list(CheckListParams params, RequestOptions requestOptions)
-
delete
Unit delete(String submissionId, CheckDeleteParams params)
Cancel a notification template submission.
-
delete
Unit delete(String submissionId, CheckDeleteParams params, RequestOptions requestOptions)
-
delete
Unit delete(CheckDeleteParams params)
-
delete
abstract Unit delete(CheckDeleteParams params, RequestOptions requestOptions)
-
-
-
-