Interface PrivateChannelInfoRetrofitAPI


public interface PrivateChannelInfoRetrofitAPI
Interface for the my box information retrofit based service
Since:
9/24/19
  • Method Summary

    Modifier and Type
    Method
    Description
    getChannelList(boolean isAdminEnabled)
    Retrofit method which requests which retrieves the channel info for audio audioChannels
    void
    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)