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 AlipayOpenMiniDeveloperAppinfoBatchqueryModel(object):
def __init__(self):
self._bundle_id = None
@property
def bundle_id(self):
return self._bundle_id
@bundle_id.setter
def bundle_id(self, value):
self._bundle_id = value
def to_alipay_dict(self):
params = dict()
if self.bundle_id:
if hasattr(self.bundle_id, 'to_alipay_dict'):
params['bundle_id'] = self.bundle_id.to_alipay_dict()
else:
params['bundle_id'] = self.bundle_id
return params
@staticmethod
def from_alipay_dict(d):
if not d:
return None
o = AlipayOpenMiniDeveloperAppinfoBatchqueryModel()
if 'bundle_id' in d:
o.bundle_id = d['bundle_id']
return o