Interface ItemService
-
- All Implemented Interfaces:
public interface ItemService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceItemService.WithRawResponseA view of ItemService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract ItemService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract ItemServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. Unitupdate(String topicId, ItemUpdateParams params)Create or Replace Default Preferences For Topic Unitupdate(String topicId, ItemUpdateParams params, RequestOptions requestOptions)Unitupdate(ItemUpdateParams params)abstract Unitupdate(ItemUpdateParams params, RequestOptions requestOptions)Unitdelete(String topicId, ItemDeleteParams params)Remove Default Preferences For Topic Unitdelete(String topicId, ItemDeleteParams params, RequestOptions requestOptions)Unitdelete(ItemDeleteParams params)abstract Unitdelete(ItemDeleteParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract ItemService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract ItemService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
update
Unit update(String topicId, ItemUpdateParams params)
Create or Replace Default Preferences For Topic
-
update
Unit update(String topicId, ItemUpdateParams params, RequestOptions requestOptions)
-
update
Unit update(ItemUpdateParams params)
-
update
abstract Unit update(ItemUpdateParams params, RequestOptions requestOptions)
-
delete
Unit delete(String topicId, ItemDeleteParams params)
Remove Default Preferences For Topic
-
delete
Unit delete(String topicId, ItemDeleteParams params, RequestOptions requestOptions)
-
delete
Unit delete(ItemDeleteParams params)
-
delete
abstract Unit delete(ItemDeleteParams params, RequestOptions requestOptions)
-
-
-
-