You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
flowroutenumbersandmessaging.http.http_call_back
|
||
|
|
||
|
This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ).
|
||
|
"""
|
||
|
|
||
|
class HttpCallBack(object):
|
||
|
|
||
|
"""An interface for the callback to be called before and after the
|
||
|
HTTP call for an endpoint is made.
|
||
|
|
||
|
This class should not be instantiated but should be used as a base class
|
||
|
for HttpCallBack classes.
|
||
|
|
||
|
"""
|
||
|
|
||
|
def on_before_request(self,
|
||
|
request):
|
||
|
"""The controller will call this method before making the HttpRequest.
|
||
|
|
||
|
Args:
|
||
|
request (HttpRequest): The request object which will be sent
|
||
|
to the HttpClient to be executed.
|
||
|
"""
|
||
|
raise NotImplementedError("This method has not been implemented.")
|
||
|
|
||
|
def on_after_response(self,
|
||
|
context):
|
||
|
"""The controller will call this method after making the HttpRequest.
|
||
|
|
||
|
Args:
|
||
|
context (HttpContext): The HttpContext of the API call.
|
||
|
"""
|
||
|
raise NotImplementedError("This method has not been implemented.")
|