Interface LegChannel

Represents a Leg Channel

interface LegChannel {
    get number(): Nullable<string>;
    get type(): Nullable<string>;
    get user(): Nullable<string>;
}

Accessors

Accessors

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

    Returns Nullable<string>

  • get type(): Nullable<string>
  • The type of Channel

    Returns Nullable<string>

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

    Returns Nullable<string>