openapi-core/openapi_core/schema/responses/models.py

22 lines
693 B
Python
Raw Normal View History

2018-04-17 12:18:40 +00:00
"""OpenAPI core responses models module"""
from openapi_core.exceptions import InvalidContentType
class Response(object):
def __init__(
self, http_status, description, headers=None, content=None,
links=None):
self.http_status = http_status
self.description = description
self.headers = headers and dict(headers) or {}
self.content = content and dict(content) or {}
self.links = links and dict(links) or {}
def __getitem__(self, mimetype):
try:
return self.content[mimetype]
except KeyError:
raise InvalidContentType(
"Invalid mime type `{0}`".format(mimetype))