Interface PrivateChannelInfoRetrofitAPI
public interface PrivateChannelInfoRetrofitAPI
Interface for the my box information retrofit based service
- Since:
- 9/24/19
-
Method Summary
Modifier and TypeMethodDescriptiongetChannelList
(boolean isAdminEnabled) Retrofit method which requests which retrieves the channel info for audio audioChannelsvoid
setChannelsPrivacy
(String key, List<AudioChannel> audioChannelList, retrofit.Callback<retrofit.client.Response> handler)
-
Method Details
-
getChannelList
@GET("/exxtractor/api/v3/privateChannels?privateChannels=true") List<AudioChannel> getChannelList(@Query("isAdminEnabled") boolean isAdminEnabled) throws retrofit.RetrofitError Retrofit method which requests which retrieves the channel info for audio audioChannels- Returns:
- The channel info
- Throws:
retrofit.RetrofitError
-
setChannelsPrivacy
@PUT("/exxtractor/api/v3/privateChannels") void setChannelsPrivacy(@Query("exxKey") String key, @Body List<AudioChannel> audioChannelList, retrofit.Callback<retrofit.client.Response> handler)
-