POST api/bbs/SetPriceHideColumn

设置价格隐藏列

Request Information

URI Parameters

None.

Body Parameters

请求数据

SetPriceHideColumnDto
NameDescriptionTypeAdditional information
hide_column_name

列名称

string

None.

is_hide

是否隐藏

integer

None.

user_id

当前登录者Id

string

None.

token

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "hide_column_name": "sample string 1",
  "is_hide": 1,
  "user_id": "sample string 2",
  "token": "sample string 3"
}

application/xml, text/xml

Sample:
<SetPriceHideColumnDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBS.Model.Dtos.Post">
  <token xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 3</token>
  <user_id xmlns="http://schemas.datacontract.org/2004/07/BBS.Model">sample string 2</user_id>
  <hide_column_name>sample string 1</hide_column_name>
  <is_hide>1</is_hide>
</SetPriceHideColumnDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SetPriceHideColumnDto'.

Response Information

Resource Description

设置价格隐藏列

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.