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