Module twitchpy.dataclasses.extension_configuration_segment

Classes

class ExtensionConfigurationSegment (segment: str, broadcaster_id: str, content: str, version: str)
Expand source code
@dataclass
class ExtensionConfigurationSegment:
    """
    Represents a configuration segment of an extension

    Attributes:
        segment (str): The type of segment
            Possible values: broadcaster, developer, global
        broadcaster_id (str): The ID of the broadcaster that installed the extension
        content (str): The contents of the segment
        version (str): The version number that identifies this definition of the segment’s data
    """

    segment: str
    broadcaster_id: str
    content: str
    version: str

Represents a configuration segment of an extension

Attributes

segment : str
The type of segment Possible values: broadcaster, developer, global
broadcaster_id : str
The ID of the broadcaster that installed the extension
content : str
The contents of the segment
version : str
The version number that identifies this definition of the segment’s data

Class variables

var broadcaster_id : str

The type of the None singleton.

var content : str

The type of the None singleton.

var segment : str

The type of the None singleton.

var version : str

The type of the None singleton.