public class DeleteActionRequestExecutor extends RequestExecutor<java.lang.String>
ActionsApi. Use this class if you want to delete actions.
Example of use:
IKontaktCloud kontaktCloud = KontaktCloud.newInstance();
kontaktCloud.actions().delete(ID).execute();
| Constructor and Description |
|---|
DeleteActionRequestExecutor(ActionsService actionsService,
java.util.UUID id)
Constructs request executor initialized with corresponding service class and action's id.
|
| Modifier and Type | Method and Description |
|---|---|
protected java.util.Map<java.lang.String,java.lang.String> |
params()
Composes the request's parameters in map.
|
protected retrofit2.Call<java.lang.String> |
prepareCall()
Prepares a request to execute.
|
execute, executepublic DeleteActionRequestExecutor(ActionsService actionsService, java.util.UUID id)
actionsService - the actions API service.id - the action's unique identifier.protected retrofit2.Call<java.lang.String> prepareCall()
prepareCall in class RequestExecutor<java.lang.String>protected java.util.Map<java.lang.String,java.lang.String> params()
params in class RequestExecutor<java.lang.String>