Table of Contents

Class MusicChannel

Represents an actual music channel that can be streamed or used for generation.

public class MusicChannel
Inheritance
object
MusicChannel

Properties

ChannelId

The ID of the channel.

public int ChannelId { get; set; }

Property Value

int

Emoji

An emoji representing the channel (if available).

public string Emoji { get; set; }

Property Value

string

Icon

A custom icon URL or identifier (if available).

public string Icon { get; set; }

Property Value

string

Name

The name of the channel (e.g. Acoustic).

public string Name { get; set; }

Property Value

string

Playlist

The unique playlist index of the channel (e.g. "0.0.1").

public string Playlist { get; set; }

Property Value

string

Stream

Streaming info including the actual URL to stream this channel.

public StreamInfo Stream { get; set; }

Property Value

StreamInfo