12345678910111213141516171819202122232425 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.response.AlipayResponse import AlipayResponse
- class AlipaySocialBaseChatSendResponse(AlipayResponse):
- def __init__(self):
- super(AlipaySocialBaseChatSendResponse, self).__init__()
- self._msg_index = None
- @property
- def msg_index(self):
- return self._msg_index
- @msg_index.setter
- def msg_index(self, value):
- self._msg_index = value
- def parse_response_content(self, response_content):
- response = super(AlipaySocialBaseChatSendResponse, self).parse_response_content(response_content)
- if 'msg_index' in response:
- self.msg_index = response['msg_index']
|