1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package com.pina;
import java.util.List;
import com.pina.datatypes.Video;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;
public interface HolodexService {
@GET("/api/v2/live")
Call<List<Video>> getLiveStreams(
@Query("channel_id") String channel_id,
@Query("id") String id,
@Query("include") String include,
@Query("lang") String lang,
@Query("limit") Integer limit,
@Query("max_upcoming_hours") Integer offset,
@Query("mentioned_channel_id") String mentioned_channel_id,
@Query("offset") Integer max_upcoming_hours,
@Query("order") String order,
@Query("org") String org,
@Query("paginated") String paginated,
@Query("sort") String sort,
@Query("status") String status,
@Query("topic") String topic,
@Query("type") String type
);
}
|