此服务会从大厅取得所有在线游戏投注总额
输入参数名称 | 描述 | 类型和长度限制 | 必填? |
---|---|---|---|
method | 必须是 “GetUserBetAmount” | String (32) | Y |
Key | 密钥 | String (32) | Y |
Time | 当前时间格式“yyyyMMddHHmmss” | DateTime | Y |
Username | 用户名 | String (28) | N |
StartDate | 起始时间 (默认当前日期) "yyyy-MM-dd HH:mm:ss" | DateTime | N |
TimeRange | 小时范围 0 到 23 (默认 0 = 24 小时) | Int | N |
名称 | 描述 | 类型和长度限制 | 必填? |
---|---|---|---|
Username | 用户名 | String (28) | Y |
StakeAmount | 所有游戏投注总额 | Decimal | Y |
ErrorMsgId | 错误信息: 0: 成功 108: 用户名长度或格式错误 116: 用户名不存在 | Byte | Y |
ErrorMsg | 错误信息详细 | String | Y |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?xml version="1.0" encoding="utf-8"?> <GetUserBetAmountResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <BetAmountDetailList> <BetAmountDetails> <Username>user001</Username> <StakeAmount>1105.45</StakeAmount> </BetAmountDetails> </BetAmountDetailList> <ErrorMsgId>0</ErrorMsgId> <ErrorMsg>Success</ErrorMsg> </GetUserBetAmountResponse> |