1234567891011121314151617181920212223242526272829303132 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import json
- from alipay.aop.api.response.AlipayResponse import AlipayResponse
- from alipay.aop.api.domain.SupportFunction import SupportFunction
- class AlipayCommerceCityfacilitatorFunctionQueryResponse(AlipayResponse):
- def __init__(self):
- super(AlipayCommerceCityfacilitatorFunctionQueryResponse, self).__init__()
- self._functions = None
- @property
- def functions(self):
- return self._functions
- @functions.setter
- def functions(self, value):
- if isinstance(value, list):
- self._functions = list()
- for i in value:
- if isinstance(i, SupportFunction):
- self._functions.append(i)
- else:
- self._functions.append(SupportFunction.from_alipay_dict(i))
- def parse_response_content(self, response_content):
- response = super(AlipayCommerceCityfacilitatorFunctionQueryResponse, self).parse_response_content(response_content)
- if 'functions' in response:
- self.functions = response['functions']
|