Aliyun.Oss.LiveChannel.delete

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

delete(bucket, channel_name)

Specs

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

DeleteLiveChannel接口用于删除指定的LiveChannel。

Examples

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