@@ -124,10 +124,12 @@ class YouTubeResponse(JSONDataclass):
status (str): bad.id if invalid ID.
keys (list[YouTubeService]): An array with all the server responses. THIS IS DIFFERENT THAN BEFORE! Before, this would be an array of strings. You'd use the strings as keys. Now, this array has the data directly!
api_version (int): The API version. Breaking API changes are made by incrementing this.
verdict (dict): The verdict of the response. Has video, metaonly, and comments field, that are set to true if any archive was found where that was saved. Also has human_friendly field that has a simple verdict that can be used by people.
"""
id:str
status:str
keys:list[YouTubeService]
verdict:dict
api_version:int=3
defcoerce_to_api_version(selfNEW,target):
@@ -174,6 +176,19 @@ class YouTubeResponse(JSONDataclass):