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.BatchDetailInfo import BatchDetailInfo
from alipay.aop.api.domain.BatchDetailInfo import BatchDetailInfo
from alipay.aop.api.domain.BatchDetailInfo import BatchDetailInfo
class AlipayFundTransAacollectBatchQueryResponse(AlipayResponse):
def __init__(self):
super(AlipayFundTransAacollectBatchQueryResponse, self).__init__()
self._batch_memo = None
self._batch_no = None
self._batch_status = None
self._biz_type = None
self._create_date = None
self._creater_user_id = None
self._detail_list = None
self._ext_param = None
self._paid_detail_list = None
self._pay_amount_single = None
self._pay_amount_total = None
self._pay_amount_total_for_receiver = None
self._real_items_total = None
self._show_items_total = None
self._success_amount_total = None
self._time_out_value = None
self._unpaid_detail_list = None
@property
def batch_memo(self):
return self._batch_memo
@batch_memo.setter
def batch_memo(self, value):
self._batch_memo = value
@property
def batch_no(self):
return self._batch_no
@batch_no.setter
def batch_no(self, value):
self._batch_no = value
@property
def batch_status(self):
return self._batch_status
@batch_status.setter
def batch_status(self, value):
self._batch_status = value
@property
def biz_type(self):
return self._biz_type
@biz_type.setter
def biz_type(self, value):
self._biz_type = value
@property
def create_date(self):
return self._create_date
@create_date.setter
def create_date(self, value):
self._create_date = value
@property
def creater_user_id(self):
return self._creater_user_id
@creater_user_id.setter
def creater_user_id(self, value):
self._creater_user_id = value
@property
def detail_list(self):
return self._detail_list
@detail_list.setter
def detail_list(self, value):
if isinstance(value, list):
self._detail_list = list()
for i in value:
if isinstance(i, BatchDetailInfo):
self._detail_list.append(i)
else:
self._detail_list.append(BatchDetailInfo.from_alipay_dict(i))
@property
def ext_param(self):
return self._ext_param
@ext_param.setter
def ext_param(self, value):
self._ext_param = value
@property
def paid_detail_list(self):
return self._paid_detail_list
@paid_detail_list.setter
def paid_detail_list(self, value):
if isinstance(value, list):
self._paid_detail_list = list()
for i in value:
if isinstance(i, BatchDetailInfo):
self._paid_detail_list.append(i)
else:
self._paid_detail_list.append(BatchDetailInfo.from_alipay_dict(i))
@property
def pay_amount_single(self):
return self._pay_amount_single
@pay_amount_single.setter
def pay_amount_single(self, value):
self._pay_amount_single = value
@property
def pay_amount_total(self):
return self._pay_amount_total
@pay_amount_total.setter
def pay_amount_total(self, value):
self._pay_amount_total = value
@property
def pay_amount_total_for_receiver(self):
return self._pay_amount_total_for_receiver
@pay_amount_total_for_receiver.setter
def pay_amount_total_for_receiver(self, value):
self._pay_amount_total_for_receiver = value
@property
def real_items_total(self):
return self._real_items_total
@real_items_total.setter
def real_items_total(self, value):
self._real_items_total = value
@property
def show_items_total(self):
return self._show_items_total
@show_items_total.setter
def show_items_total(self, value):
self._show_items_total = value
@property
def success_amount_total(self):
return self._success_amount_total
@success_amount_total.setter
def success_amount_total(self, value):
self._success_amount_total = value
@property
def time_out_value(self):
return self._time_out_value
@time_out_value.setter
def time_out_value(self, value):
self._time_out_value = value
@property
def unpaid_detail_list(self):
return self._unpaid_detail_list
@unpaid_detail_list.setter
def unpaid_detail_list(self, value):
if isinstance(value, list):
self._unpaid_detail_list = list()
for i in value:
if isinstance(i, BatchDetailInfo):
self._unpaid_detail_list.append(i)
else:
self._unpaid_detail_list.append(BatchDetailInfo.from_alipay_dict(i))
def parse_response_content(self, response_content):
response = super(AlipayFundTransAacollectBatchQueryResponse, self).parse_response_content(response_content)
if 'batch_memo' in response:
self.batch_memo = response['batch_memo']
if 'batch_no' in response:
self.batch_no = response['batch_no']
if 'batch_status' in response:
self.batch_status = response['batch_status']
if 'biz_type' in response:
self.biz_type = response['biz_type']
if 'create_date' in response:
self.create_date = response['create_date']
if 'creater_user_id' in response:
self.creater_user_id = response['creater_user_id']
if 'detail_list' in response:
self.detail_list = response['detail_list']
if 'ext_param' in response:
self.ext_param = response['ext_param']
if 'paid_detail_list' in response:
self.paid_detail_list = response['paid_detail_list']
if 'pay_amount_single' in response:
self.pay_amount_single = response['pay_amount_single']
if 'pay_amount_total' in response:
self.pay_amount_total = response['pay_amount_total']
if 'pay_amount_total_for_receiver' in response:
self.pay_amount_total_for_receiver = response['pay_amount_total_for_receiver']
if 'real_items_total' in response:
self.real_items_total = response['real_items_total']
if 'show_items_total' in response:
self.show_items_total = response['show_items_total']
if 'success_amount_total' in response:
self.success_amount_total = response['success_amount_total']
if 'time_out_value' in response:
self.time_out_value = response['time_out_value']
if 'unpaid_detail_list' in response:
self.unpaid_detail_list = response['unpaid_detail_list']