Module twitchpy.dataclasses.extension_analytics_report

Classes

class ExtensionAnalyticsReport (extension_id: str,
url: str,
type: str,
started_at: datetime.datetime,
ended_at: datetime.datetime)
Expand source code
@dataclass
class ExtensionAnalyticsReport:
    """
    Represents an analytics report for an extension

    Attributes:
        extension_id (str): An ID that identifies the extension 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
    """

    extension_id: str
    url: str
    type: str
    started_at: datetime
    ended_at: datetime

Represents an analytics report for an extension

Attributes

extension_id : str
An ID that identifies the extension 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 extension_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.