Module twitchpy.dataclasses.conduit

Classes

class Conduit (conduit_id: str, shard_count: int)
Expand source code
@dataclass
class Conduit:
    """
    Represents a conduit

    Attributes:
        conduit_id (str): Conduit ID
        shard_count (int): Number of shards associated with this conduit
    """

    conduit_id: str
    shard_count: int

Represents a conduit

Attributes

conduit_id : str
Conduit ID
shard_count : int
Number of shards associated with this conduit

Class variables

var conduit_id : str

The type of the None singleton.

var shard_count : int

The type of the None singleton.