GET api/flight/currency/exchageRate
貨幣對換率
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
貨幣對換率
ReturnResultOfListOfExchageRateContract| Name | Description | Type | Additional information | 
|---|---|---|---|
| data | Collection of ExchageRateContract | 
                             None.  | 
                |
| code | 
                         状态码:100成功,其他自定义  | 
                    integer | 
                             None.  | 
                
| message | 
                         提示消息  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
{
  "data": [
    {
      "fromCurrency": "sample string 1",
      "toCurrency": "sample string 2",
      "rateAmt": 3.0
    },
    {
      "fromCurrency": "sample string 1",
      "toCurrency": "sample string 2",
      "rateAmt": 3.0
    }
  ],
  "code": 1,
  "message": "sample string 2"
}