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