Module twitchpy.dataclasses.game_analytics_report

Classes

class GameAnalyticsReport (game_id: str,
url: str,
type: str,
started_at: datetime.datetime,
ended_at: datetime.datetime)
Expand source code
@dataclass
class GameAnalyticsReport:
    """
    Represents an analytics report for a game

    Attributes:
        game_id (str): An ID that identifies the game that the report was generated for
        url (str): The URL that you use to download the report
        type (str): The type of report
        started_at (datetime): The reporting window’s start date
        ended_at (datetime): The reporting window’s end date
    """

    game_id: str
    url: str
    type: str
    started_at: datetime
    ended_at: datetime

Represents an analytics report for a game

Attributes

game_id : str
An ID that identifies the game that the report was generated for
url : str
The URL that you use to download the report
type : str
The type of report
started_at : datetime
The reporting window’s start date
ended_at : datetime
The reporting window’s end date

Class variables

var ended_at : datetime.datetime

The type of the None singleton.

var game_id : str

The type of the None singleton.

var started_at : datetime.datetime

The type of the None singleton.

var type : str

The type of the None singleton.

var url : str

The type of the None singleton.