GET api/customer/luckydraw/count
可抽奖次数,支付(定期、延期)过后即计算
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResponseOfLuckyDrawCount| Name | Description | Type | Additional information |
|---|---|---|---|
| data | LuckyDrawCount |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"Count": 1,
"CurrentPrice": 2.0,
"CurrentCount": 3
},
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseOfLuckyDrawCountWB1RVkV6 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
<errcode>sample string 1</errcode>
<errmsg>sample string 2</errmsg>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ViewModel.Api.LuckyDraw">
<d2p1:Count>1</d2p1:Count>
<d2p1:CurrentCount>3</d2p1:CurrentCount>
<d2p1:CurrentPrice>2</d2p1:CurrentPrice>
</data>
</ResponseOfLuckyDrawCountWB1RVkV6>