# `CCXT.LastPrice`
[🔗](https://github.com/ZenHive/ccxt_client/blob/main/lib/ccxt/last_price.ex#L1)

Unified last price data.

Represents the most recent trade price for a symbol.

## Fields

  * `symbol` - Unified symbol
  * `timestamp` - Price timestamp in milliseconds
  * `datetime` - ISO 8601 datetime string
  * `price` - Last traded price
  * `side` - Last trade side ("buy" or "sell")
  * `info` - Raw exchange response

# `t`

```elixir
@type t() :: %CCXT.LastPrice{
  datetime: String.t() | nil,
  info: map() | nil,
  price: number() | nil,
  side: String.t() | nil,
  symbol: String.t() | nil,
  timestamp: integer() | nil
}
```

# `schema`

```elixir
@spec schema() :: map()
```

JSON Schema for the LastPrice unified type.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
