Interface Channel

Represents a Channel. It will hold either an id or a number, depending on the Channel, but never both of them.

interface Channel {
    get id(): Nullable<string>;
    get number(): Nullable<string>;
}

Accessors

Accessors

  • get id(): Nullable<string>
  • The Channel id

    Returns Nullable<string>

  • get number(): Nullable<string>
  • The Channel number

    Returns Nullable<string>