game2006api/doc/AccountVerify.py
aozhiwei 120c917af9 1
2023-08-25 10:28:53 +08:00

26 lines
753 B
Python

# -*- coding: utf-8 -*-
import _common
class AccountVerify(object):
def __init__(self):
self.apis = [
{
'method': 'GET',
'name': 'canBind',
'desc': '是否可绑定',
'group': 'AccountVerify',
'url': 'webapp/index.php?c=AccountVerify&a=canBind',
'params': [
_common.ReqHead(),
['guest_account', '', 'guest账号'],
['target_plat', '', '绑定的目标账号渠道'],
['target_account', '', '绑定的目标账号'],
],
'response': [
_common.RspHead(),
]
},
]