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