currentStatus
船舶挂靠当前状态。
调用方式:
typescript
const data = await client.port.currentStatus(params);typescript
import { Port } from 'loongship-data';
const data = await Port.currentStatus({ key: 'YOUR_KEY', ...params });请求参数 (PortCurrentStatusParams)
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| mmsi | number | 是 | 船舶主键。 |
| key | string | 否 | User authorization key. Optional when an instance key or global key is registered. |
返回类型: PortCurrentStatusData
查看类型定义
typescript
export type PortCurrentStatusData = LoongshipRecord[];