This commit is contained in:
aozhiwei 2023-08-03 18:13:57 +08:00
parent 11ef7735be
commit dc7a511fa5

View File

@ -165,37 +165,5 @@ class Market(object):
'response': [
_common.RspHead()
]
},
{
'name': 'getSupportedCurrencyTypes',
'desc': '获取支持的货币类型',
'group': 'Market',
'url': 'webapp/index.php?c=Market&a=getSupportedCurrencyTypes',
'params': [
['account', '', '账号id'],
],
'response': [
_common.RspHead(),
['!list', [_common.CurrencyType()], '货币类型列表'],
]
},
{
'name': 'getTransactionRecord',
'desc': '获取交易记录',
'group': 'Market',
'url': 'webapp/index.php?c=Market&a=getTransactionRecord',
'params': [
['account', '', '账号id'],
['type', 0, '物品类型 0:所有 1:英雄 2:武器 3:芯片 5:碎片'],
['start', 0, '分页开始偏移'],
['page_size', 0, '分页大小'],
],
'response': [
_common.RspHead(),
['total', 0, '交易记录总数'],
['start', 0, '有效的分页偏移'],
['page_size', 0, '有效的分页大小'],
['!list', [_common.TransactionRecordNew()], '交易记录列表'],
]
}
]