|
3 | 3 |
|
4 | 4 | Die Tagesschau ist eine Nachrichtensendung der ARD (Abkürzung für Arbeitsgemeinschaft der öffentlich-rechtlichen Rundfunkanstalten der Bundesrepublik Deutschland), die von ARD-aktuell in Hamburg produziert und mehrmals täglich ausgestrahlt wird. ARD-aktuell ist seit 1977 die zentrale Fernsehnachrichtenredaktion der ARD, bei welcher es sich wiederum um einen Rundfunkverbund handelt, der aus den Landesrundfunkanstalten und der Deutschen Welle besteht. <br><br> Über die hier dokumentierte API stehen auf [www.tagesschau.de](https://www.tagesschau.de) aktuelle Nachrichten und Medienbeiträge im JSON-Format zur Verfügung. <br><br> **Achtung:** Die Nutzung der Inhalte für den privaten, nicht-kommerziellen Gebrauch ist gestattet, die Veröffentlichung hingegen nicht - mit Ausnahme von Angeboten, die explizit unter der CC-Lizenz stehen (https://tagesschau.de/creativecommons). Es ist unzulässig, mehr als 60 Abrufe pro Stunde zu tätigen. # noqa: E501
|
5 | 5 |
|
6 |
| - The version of the OpenAPI document: 2.0.0 |
| 6 | + The version of the OpenAPI document: 2.0.1 |
7 | 7 | Contact: andreasfischer1985@web.de
|
8 | 8 | Generated by: https://openapi-generator.tech
|
9 | 9 | """
|
@@ -96,6 +96,7 @@ def __init__(self, msg, path_to_item=None):
|
96 | 96 |
|
97 | 97 |
|
98 | 98 | class ApiException(OpenApiException):
|
| 99 | + |
99 | 100 | def __init__(self, status=None, reason=None, http_resp=None):
|
100 | 101 | if http_resp:
|
101 | 102 | self.status = http_resp.status
|
@@ -123,21 +124,25 @@ def __str__(self):
|
123 | 124 |
|
124 | 125 |
|
125 | 126 | class NotFoundException(ApiException):
|
| 127 | + |
126 | 128 | def __init__(self, status=None, reason=None, http_resp=None):
|
127 | 129 | super(NotFoundException, self).__init__(status, reason, http_resp)
|
128 | 130 |
|
129 | 131 |
|
130 | 132 | class UnauthorizedException(ApiException):
|
| 133 | + |
131 | 134 | def __init__(self, status=None, reason=None, http_resp=None):
|
132 | 135 | super(UnauthorizedException, self).__init__(status, reason, http_resp)
|
133 | 136 |
|
134 | 137 |
|
135 | 138 | class ForbiddenException(ApiException):
|
| 139 | + |
136 | 140 | def __init__(self, status=None, reason=None, http_resp=None):
|
137 | 141 | super(ForbiddenException, self).__init__(status, reason, http_resp)
|
138 | 142 |
|
139 | 143 |
|
140 | 144 | class ServiceException(ApiException):
|
| 145 | + |
141 | 146 | def __init__(self, status=None, reason=None, http_resp=None):
|
142 | 147 | super(ServiceException, self).__init__(status, reason, http_resp)
|
143 | 148 |
|
|
0 commit comments