GET api/UserInfoV770/TipsterTypeList
获取报料类型及规则地址
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ZaiMieApp.WebApi.ViewModel.ResultDataOfZaiMieApp.WebApi.ViewModel.TipsterType| Name | Description | Type | Additional information |
|---|---|---|---|
| recordsetCount | integer |
None. |
|
| pageSize | integer |
None. |
|
| page | integer |
None. |
|
| allPage | integer |
None. |
|
| message | string |
None. |
|
| success | boolean |
None. |
|
| code | integer |
None. |
|
| data | Collection of ZaiMieApp.WebApi.ViewModel.TipsterType |
None. |
Response Formats
application/json, text/json
Sample:
{
"recordsetCount": 1,
"pageSize": 2,
"page": 3,
"allPage": 4,
"message": "sample string 5",
"success": true,
"code": 7,
"data": [
{
"tipsterTypeId": 1,
"tipsterTypeName": "sample string 2",
"tipsterTypeRuleUrl": "sample string 3",
"restrictWordsCount": 4
},
{
"tipsterTypeId": 1,
"tipsterTypeName": "sample string 2",
"tipsterTypeRuleUrl": "sample string 3",
"restrictWordsCount": 4
}
]
}
application/xml, text/xml
Sample:
<ResultDataOfTipsterTypePr2Hy9OI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZaiMieApp.WebApi.ViewModel">
<allPage>4</allPage>
<code>7</code>
<data>
<TipsterType>
<restrictWordsCount>4</restrictWordsCount>
<tipsterTypeId>1</tipsterTypeId>
<tipsterTypeName>sample string 2</tipsterTypeName>
<tipsterTypeRuleUrl>sample string 3</tipsterTypeRuleUrl>
</TipsterType>
<TipsterType>
<restrictWordsCount>4</restrictWordsCount>
<tipsterTypeId>1</tipsterTypeId>
<tipsterTypeName>sample string 2</tipsterTypeName>
<tipsterTypeRuleUrl>sample string 3</tipsterTypeRuleUrl>
</TipsterType>
</data>
<message>sample string 5</message>
<page>3</page>
<pageSize>2</pageSize>
<recordsetCount>1</recordsetCount>
<success>true</success>
</ResultDataOfTipsterTypePr2Hy9OI>