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