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

Request to retrieve the result of a future/async operation.

Mirrors Python `tinker.types.FutureRetrieveRequest`.

# `t`

```elixir
@type t() :: %Tinkex.Types.FutureRetrieveRequest{
  allow_metadata_only: boolean(),
  request_id: String.t()
}
```

# `from_json`

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

Parse from JSON map.

# `new`

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

Create a new FutureRetrieveRequest.

# `to_json`

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

Convert to JSON-encodable map.

---

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