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

com.deque.networking.analytics.AmplitudeInterface.kt Maven / Gradle / Ivy

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy