Package 

Interface PulseService

    • Method Summary

      Modifier and Type Method Description
      abstract Response<Unit> sendEvent(@Header(value = x-sdk-type) String sdkType, @Body() Event body)
      abstract Response<Unit> sendEventBatch(@Header(value = x-sdk-type) String sdkType, @Body() List<Event> body)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • sendEvent

        @Headers(value = {Content-Type: application/json})@POST(value = /e) abstract Response<Unit> sendEvent(@Header(value = x-sdk-type) String sdkType, @Body() Event body)
      • sendEventBatch

        @Headers(value = {Content-Type: application/json})@POST(value = /batch) abstract Response<Unit> sendEventBatch(@Header(value = x-sdk-type) String sdkType, @Body() List<Event> body)