Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
alipay-sdk-python
/
alipay
/
aop
/
api
/
response
/
AlipayFundTransGroupfundsPayorderCreateResponse.py
|
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.response.AlipayResponse import AlipayResponse
class AlipayFundTransGroupfundsPayorderCreateResponse(AlipayResponse):
def __init__(self):
super(AlipayFundTransGroupfundsPayorderCreateResponse, self).__init__()
self._biz_type = None
self._transfer_no = None
@property
def biz_type(self):
return self._biz_type
@biz_type.setter
def biz_type(self, value):
self._biz_type = value
@property
def transfer_no(self):
return self._transfer_no
@transfer_no.setter
def transfer_no(self, value):
self._transfer_no = value
def parse_response_content(self, response_content):
response = super(AlipayFundTransGroupfundsPayorderCreateResponse, self).parse_response_content(response_content)
if 'biz_type' in response:
self.biz_type = response['biz_type']
if 'transfer_no' in response:
self.transfer_no = response['transfer_no']