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
class AlipayFundTransCommonQueryResponse(AlipayResponse):
def __init__(self):
super(AlipayFundTransCommonQueryResponse, self).__init__()
self._error_code = None
self._fail_reason = None
self._order_id = None
self._out_biz_no = None
self._passback_params = None
self._status = None
@property
def error_code(self):
return self._error_code
@error_code.setter
def error_code(self, value):
self._error_code = value
@property
def fail_reason(self):
return self._fail_reason
@fail_reason.setter
def fail_reason(self, value):
self._fail_reason = value
@property
def order_id(self):
return self._order_id
@order_id.setter
def order_id(self, value):
self._order_id = value
@property
def out_biz_no(self):
return self._out_biz_no
@out_biz_no.setter
def out_biz_no(self, value):
self._out_biz_no = value
@property
def passback_params(self):
return self._passback_params
@passback_params.setter
def passback_params(self, value):
self._passback_params = value
@property
def status(self):
return self._status
@status.setter
def status(self, value):
self._status = value
def parse_response_content(self, response_content):
response = super(AlipayFundTransCommonQueryResponse, self).parse_response_content(response_content)
if 'error_code' in response:
self.error_code = response['error_code']
if 'fail_reason' in response:
self.fail_reason = response['fail_reason']
if 'order_id' in response:
self.order_id = response['order_id']
if 'out_biz_no' in response:
self.out_biz_no = response['out_biz_no']
if 'passback_params' in response:
self.passback_params = response['passback_params']
if 'status' in response:
self.status = response['status']