Commit 2d5301a3 authored by TheTechRobo's avatar TheTechRobo
Browse files

Add field

parent 11973267
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ class Service(JSONDataclass):
        rawraw (Any): The data used to check whether the video is archived on that particular service. For example, for GhostArchive, it would be the HTTP status code.
        metaonly (bool): True if only the metadata is archived. This value should not be relied on!
        comments (bool): True if the comments are archived. This value should not be relied on!
        maybe_paywalled (str): True if the service might require payment.
        classname (str): The internal class name, useful for streaming mode.
    """
    archived: bool
@@ -50,6 +51,7 @@ class Service(JSONDataclass):
    available: typing.Optional[str] = None
    suppl: str = ""
    error: typing.Optional[typing.Any] = None
    maybe_paywalled: bool = False

    configId = None