Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
doctor / doctor / response.py
Size: Mime:
from typing import Generic, TypeVar


#: A type variable to represent the type of content of a `Response`.
CT = TypeVar('CT')


class Response(Generic[CT]):
    """Represents a response.

    This object contains the response itself along with any additional headers
    that should be added and returned with the response data.  An instance of
    this class can be returned from a logic function in order to modify
    response headers.

    :param content: The data to be returned with the response.
    :param dict headers: A dict of response headers to include with the response
    :param int status_code: The status code for the response.
    """

    def __init__(self, content: CT, headers: dict = None,
                 status_code: int = None):
        self.content = content
        self.headers = headers
        self.status_code = status_code