fix: list arg
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
"swagger": "2.0",
|
||||
"info": {
|
||||
"title": "",
|
||||
"description": "nova api",
|
||||
"version": ""
|
||||
},
|
||||
"schemes": [
|
||||
@@ -895,6 +894,28 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/gapi/transfercastile/v1/getBalance": {
|
||||
"post": {
|
||||
"summary": "查询castile代币余额",
|
||||
"operationId": "GetCastileBalance",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "A successful response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/UserCastileBalanceResp"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"transfercastile"
|
||||
],
|
||||
"security": [
|
||||
{
|
||||
"apiKey": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"/gapi/transfercastile/v1/list": {
|
||||
"post": {
|
||||
"summary": "获取提取castile到游戏的记录",
|
||||
@@ -920,9 +941,6 @@
|
||||
"tags": [
|
||||
"transfercastile"
|
||||
],
|
||||
"consumes": [
|
||||
"multipart/form-data"
|
||||
],
|
||||
"security": [
|
||||
{
|
||||
"apiKey": []
|
||||
@@ -2068,6 +2086,32 @@
|
||||
"email"
|
||||
]
|
||||
},
|
||||
"UserCastileBalanceResp": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"total_castile": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"description": "总数"
|
||||
},
|
||||
"transfer_amount": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"description": "已转回游戏内的数量"
|
||||
},
|
||||
"total_balance": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
"description": "castile当前余额"
|
||||
}
|
||||
},
|
||||
"title": "UserCastileBalanceResp",
|
||||
"required": [
|
||||
"total_castile",
|
||||
"transfer_amount",
|
||||
"total_balance"
|
||||
]
|
||||
},
|
||||
"UserNft": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user