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

com.segment.analytics.http.SegmentService Maven / Gradle / Ivy

The newest version!
package com.segment.analytics.http;

import com.segment.analytics.messages.Batch;
import okhttp3.HttpUrl;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.POST;
import retrofit2.http.Url;

/** REST interface for the Segment API. */
public interface SegmentService {
  @POST
  Call upload(@Url HttpUrl uploadUrl, @Body Batch batch);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy