Package 

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)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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)