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 RoyaltyEntity(object):
def __init__(self):
self._account = None
self._memo = None
self._name = None
self._type = None
@property
def account(self):
return self._account
@account.setter
def account(self, value):
self._account = value
@property
def memo(self):
return self._memo
@memo.setter
def memo(self, value):
self._memo = value
@property
def name(self):
return self._name
@name.setter
def name(self, value):
self._name = value
@property
def type(self):
return self._type
@type.setter
def type(self, value):
self._type = value
def to_alipay_dict(self):
params = dict()
if self.account:
if hasattr(self.account, 'to_alipay_dict'):
params['account'] = self.account.to_alipay_dict()
else:
params['account'] = self.account
if self.memo:
if hasattr(self.memo, 'to_alipay_dict'):
params['memo'] = self.memo.to_alipay_dict()
else:
params['memo'] = self.memo
if self.name:
if hasattr(self.name, 'to_alipay_dict'):
params['name'] = self.name.to_alipay_dict()
else:
params['name'] = self.name
if self.type:
if hasattr(self.type, 'to_alipay_dict'):
params['type'] = self.type.to_alipay_dict()
else:
params['type'] = self.type
return params
@staticmethod
def from_alipay_dict(d):
if not d:
return None
o = RoyaltyEntity()
if 'account' in d:
o.account = d['account']
if 'memo' in d:
o.memo = d['memo']
if 'name' in d:
o.name = d['name']
if 'type' in d:
o.type = d['type']
return o