class documentation

class RouteResult(object): (source)

View In Hierarchy

The successful result of a call to a route.

Method __init__ :param str obj_result: The result of a route not including the binary payload portion, if one exists. Must be serialized JSON. :param requests.models.Response http_resp: A raw HTTP response. It will be used to stream the binary-body payload of the response.
Instance Variable http_resp Undocumented
Instance Variable obj_result Undocumented
def __init__(self, obj_result, http_resp=None): (source)

:param str obj_result: The result of a route not including the binary payload portion, if one exists. Must be serialized JSON. :param requests.models.Response http_resp: A raw HTTP response. It will be used to stream the binary-body payload of the response.

http_resp = (source)

Undocumented

obj_result = (source)

Undocumented