# `Tinkex.Types.SessionHeartbeatRequest`
[🔗](https://github.com/North-Shore-AI/tinkex/blob/v0.4.0/lib/tinkex/types/session_heartbeat_request.ex#L1)

Request to send a heartbeat for a session.

Mirrors Python `tinker.types.SessionHeartbeatRequest`.

# `t`

```elixir
@type t() :: %Tinkex.Types.SessionHeartbeatRequest{
  session_id: String.t(),
  type: String.t()
}
```

# `from_json`

```elixir
@spec from_json(map()) :: t()
```

Parse from JSON map.

# `new`

```elixir
@spec new(String.t()) :: t()
```

Create a new SessionHeartbeatRequest.

# `to_json`

```elixir
@spec to_json(t()) :: map()
```

Convert to JSON-encodable map.

---

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