#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.response.AlipayResponse import AlipayResponse class AlipayEbppInvoiceFileQueryResponse(AlipayResponse): def __init__(self): super(AlipayEbppInvoiceFileQueryResponse, 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(AlipayEbppInvoiceFileQueryResponse, self).parse_response_content(response_content) if 'invoice_file_content' in response: self.invoice_file_content = response['invoice_file_content']