Repository URL to install this package:
|
Version:
3.3.202-c2ee258 ▾
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
from alipay.aop.api.constant.ParamConstants import *
class AlipayInsSceneSellerActivitySignModel(object):
def __init__(self):
self._biz_data = None
self._channel_account_id = None
self._channel_account_type = None
self._sp_code = None
@property
def biz_data(self):
return self._biz_data
@biz_data.setter
def biz_data(self, value):
self._biz_data = value
@property
def channel_account_id(self):
return self._channel_account_id
@channel_account_id.setter
def channel_account_id(self, value):
self._channel_account_id = value
@property
def channel_account_type(self):
return self._channel_account_type
@channel_account_type.setter
def channel_account_type(self, value):
self._channel_account_type = value
@property
def sp_code(self):
return self._sp_code
@sp_code.setter
def sp_code(self, value):
self._sp_code = value
def to_alipay_dict(self):
params = dict()
if self.biz_data:
if hasattr(self.biz_data, 'to_alipay_dict'):
params['biz_data'] = self.biz_data.to_alipay_dict()
else:
params['biz_data'] = self.biz_data
if self.channel_account_id:
if hasattr(self.channel_account_id, 'to_alipay_dict'):
params['channel_account_id'] = self.channel_account_id.to_alipay_dict()
else:
params['channel_account_id'] = self.channel_account_id
if self.channel_account_type:
if hasattr(self.channel_account_type, 'to_alipay_dict'):
params['channel_account_type'] = self.channel_account_type.to_alipay_dict()
else:
params['channel_account_type'] = self.channel_account_type
if self.sp_code:
if hasattr(self.sp_code, 'to_alipay_dict'):
params['sp_code'] = self.sp_code.to_alipay_dict()
else:
params['sp_code'] = self.sp_code
return params
@staticmethod
def from_alipay_dict(d):
if not d:
return None
o = AlipayInsSceneSellerActivitySignModel()
if 'biz_data' in d:
o.biz_data = d['biz_data']
if 'channel_account_id' in d:
o.channel_account_id = d['channel_account_id']
if 'channel_account_type' in d:
o.channel_account_type = d['channel_account_type']
if 'sp_code' in d:
o.sp_code = d['sp_code']
return o