com.deque.networking.analytics.AmplitudeInterface.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-analytics Show documentation
Show all versions of axe-devtools-android-analytics Show documentation
The Axe Devtools Android Analytics Library
The newest version!
package com.deque.networking.analytics
import retrofit2.http.Body
import retrofit2.http.Headers
import retrofit2.http.POST
internal interface AmplitudeInterface {
@POST("/2/httpapi")
@Headers("Content-Type: application/json")
suspend fun sendEvent(
@Body data: AmplitudeData
): Result
}