AlipayMerchantOrderPointQueryResponse.py 709 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayMerchantOrderPointQueryResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayMerchantOrderPointQueryResponse, self).__init__()
  8. self._balance = None
  9. @property
  10. def balance(self):
  11. return self._balance
  12. @balance.setter
  13. def balance(self, value):
  14. self._balance = value
  15. def parse_response_content(self, response_content):
  16. response = super(AlipayMerchantOrderPointQueryResponse, self).parse_response_content(response_content)
  17. if 'balance' in response:
  18. self.balance = response['balance']