All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.deque.networking.usageservice.UsageServiceInterface.kt Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.deque.networking.usageservice

import retrofit2.http.Body
import retrofit2.http.GET
import retrofit2.http.Headers
import retrofit2.http.POST

internal interface UsageServiceInterface {
    @POST("/v2/event")
    @Headers("Content-Type: application/json")
    suspend fun sendEvent(
        @Body data: UsageServiceEventV2Data
    ): Result

    @GET("/healthcheck")
    suspend fun healthCheck(): Result
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy