Aliyun.Oss.LiveChannel.get_stat

You're seeing just the function get_stat, go back to Aliyun.Oss.LiveChannel module for more information.
Link to this function

get_stat(bucket, channel_name)

Specs

get_stat(String.t(), String.t()) ::
  {:error, error()} | {:ok, Aliyun.Oss.Client.Response.t()}

GetLiveChannelStat接口用于获取指定LiveChannel的推流状态信息。

Examples

iex> Aliyun.Oss.LiveChannel.get_stat("some-bucket", "channe-name")
{:ok, %Aliyun.Oss.Client.Response{
    data: %{"LiveChannelStat" => %{"Status" => "Idle"}},
    headers: [
      {"Server", "AliyunOSS"},
      {"Date", "Wed, 05 Dec 2018 02:34:57 GMT"},
      ...
    ]
  }
}