POST Api/Service/Changed/UpdateChangedPayment
更新改签单收入/支付金额项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdateChangedPaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| ChangedId |
父级ID |
globally unique identifier |
None. |
| Confirmed |
是否已确认金额并操作完成 |
boolean |
None. |
| Reconciled |
是否已对账 |
boolean |
None. |
| UpgradePrice |
改签升舱费 |
decimal number |
None. |
| CostPrice |
改签手续费 |
decimal number |
None. |
| TransactionId |
交易流水号 |
string |
String length: inclusive between 0 and 200 |
| Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "e86d51f6-a92e-44df-ac66-0ab0f525979b",
"ChangedId": "f1b073c6-a8e1-437a-9ca1-ba510d13dfae",
"Confirmed": true,
"Reconciled": true,
"UpgradePrice": 5.1,
"CostPrice": 6.1,
"TransactionId": "sample string 7",
"Remarks": "sample string 8"
}
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"
}