AlipayEcoEduCampusJobdeliverModifyResponse.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import json
  4. from alipay.aop.api.response.AlipayResponse import AlipayResponse
  5. class AlipayEcoEduCampusJobdeliverModifyResponse(AlipayResponse):
  6. def __init__(self):
  7. super(AlipayEcoEduCampusJobdeliverModifyResponse, self).__init__()
  8. self._content = None
  9. self._description = None
  10. self._isv_code = None
  11. @property
  12. def content(self):
  13. return self._content
  14. @content.setter
  15. def content(self, value):
  16. self._content = value
  17. @property
  18. def description(self):
  19. return self._description
  20. @description.setter
  21. def description(self, value):
  22. self._description = value
  23. @property
  24. def isv_code(self):
  25. return self._isv_code
  26. @isv_code.setter
  27. def isv_code(self, value):
  28. self._isv_code = value
  29. def parse_response_content(self, response_content):
  30. response = super(AlipayEcoEduCampusJobdeliverModifyResponse, self).parse_response_content(response_content)
  31. if 'content' in response:
  32. self.content = response['content']
  33. if 'description' in response:
  34. self.description = response['description']
  35. if 'isv_code' in response:
  36. self.isv_code = response['isv_code']