game2006api/doc/PayMethod.py
aozhiwei 6cd300d719 1
2023-07-28 18:44:52 +08:00

24 lines
658 B
Python

# -*- coding: utf-8 -*-
import _common
class PayMethod(object):
def __init__(self):
self.apis = [
{
'name': 'getPayMethods',
'desc': '获取支付方式',
'group': 'PayMethod',
'url': 'webapp/index.php?c=PayMethod&a=getPayMethods',
'params': [
_common.ReqHead(),
['token_type', 0, "选用币种"],
],
'response': [
_common.RspHead(),
['!pay_methods', [_common.PayMethod()], '支付方式列表'],
]
}
]