com.deque.networking.usageservice.UsageServiceInterface.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-core Show documentation
Show all versions of axe-devtools-android-core Show documentation
The Axe Devtools Android Core Library
The 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