Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.response.AlipayResponse import AlipayResponse
from alipay.aop.api.domain.ArInvoiceOpenApiResponse import ArInvoiceOpenApiResponse
class AlipayBossFncInvoiceQueryResponse(AlipayResponse):
def __init__(self):
super(AlipayBossFncInvoiceQueryResponse, self).__init__()
self._result_set = None
@property
def result_set(self):
return self._result_set
@result_set.setter
def result_set(self, value):
if isinstance(value, ArInvoiceOpenApiResponse):
self._result_set = value
else:
self._result_set = ArInvoiceOpenApiResponse.from_alipay_dict(value)
def parse_response_content(self, response_content):
response = super(AlipayBossFncInvoiceQueryResponse, self).parse_response_content(response_content)
if 'result_set' in response:
self.result_set = response['result_set']