-
public interface PushService
-
-
Method Summary
Modifier and Type Method Description abstract Response<PushResponse>register(@Path(value = projectId) String projectId, @Query(value = auth) String clientID, @Body() PushBody echoClientsBody)abstract Response<PushResponse>unregister(@Path(value = projectId) String projectId, @Path(value = clientId) String clientID)-
-
Method Detail
-
register
@POST(value = {projectId}/clients) abstract Response<PushResponse> register(@Path(value = projectId) String projectId, @Query(value = auth) String clientID, @Body() PushBody echoClientsBody)
-
unregister
@DELETE(value = {projectId}/clients/{clientId}) abstract Response<PushResponse> unregister(@Path(value = projectId) String projectId, @Path(value = clientId) String clientID)
-
-
-
-