aliyun/log/topostore_response.py [16:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
class CreateTopostoreResponse(LogResponse):
    """ The response of the CreateTopostore API from log.

    :type resp: dict
    :param resp: CreateTopostoreResponse HTTP response body

    :type header: dict
    :param header: CreateTopostoreResponse HTTP response header
    """

    def __init__(self, header, resp):
        LogResponse.__init__(self, header, resp)

    def log_print(self):
        print('CreateTopostoreResponse:')
        print('headers:', self.get_all_headers())


class DeleteTopostoreResponse(LogResponse):
    """ The response of the DeleteTopostore API from log.

    :type resp: dict
    :param resp: DeleteTopostoreResponse HTTP response body

    :type header: dict
    :param header: DeleteTopostoreResponse HTTP response header
    """

    def __init__(self, header, resp):
        LogResponse.__init__(self, header, resp)

    def log_print(self):
        print('DeleteTopostoreResponse:')
        print('headers:', self.get_all_headers())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aliyun/log/topostore_response.py [143:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
class CreateTopostoreResponse(LogResponse):
    """ The response of the CreateTopostore API from log.

    :type resp: dict
    :param resp: CreateTopostoreResponse HTTP response body

    :type header: dict
    :param header: CreateTopostoreResponse HTTP response header
    """

    def __init__(self, header, resp):
        LogResponse.__init__(self, header, resp)

    def log_print(self):
        print('CreateTopostoreResponse:')
        print('headers:', self.get_all_headers())


class DeleteTopostoreResponse(LogResponse):
    """ The response of the DeleteTopostore API from log.

    :type resp: dict
    :param resp: DeleteTopostoreResponse HTTP response body

    :type header: dict
    :param header: DeleteTopostoreResponse HTTP response header
    """

    def __init__(self, header, resp):
        LogResponse.__init__(self, header, resp)

    def log_print(self):
        print('DeleteTopostoreResponse:')
        print('headers:', self.get_all_headers())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



