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

Unified margin mode data.

Represents the margin mode setting for a symbol.

## Fields

  * `symbol` - Unified symbol
  * `margin_mode` - "cross" or "isolated"
  * `info` - Raw exchange response

# `t`

```elixir
@type t() :: %CCXT.MarginMode{
  info: map() | nil,
  margin_mode: String.t() | nil,
  symbol: String.t() | nil
}
```

# `schema`

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

JSON Schema for the MarginMode unified type.

---

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