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