POST Api/Service/Order/UpdateTicketNumber
更新票号
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdateTicketNumberModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| PassengerId |
父级ID |
globally unique identifier |
None. |
| TicketNumber |
票号 |
string |
Required String length: inclusive between 0 and 20 |
| Posted |
是否已回贴 |
boolean |
None. |
| Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "da31de2c-31f0-4dd7-91a6-283dd6847706",
"PassengerId": "e00a9124-a91f-4ecd-9f59-67c1cd786b87",
"TicketNumber": "sample string 3",
"Posted": true,
"Remarks": "sample string 5"
}
Response Information
Resource Description
更新票号
SpeedPower.Utility.Models.Helper.ResultMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeed |
操作是否成功 |
boolean |
None. |
| Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeed": true,
"Message": "sample string 2"
}