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