# `ExStreamClient.Model.CallResponse`
[🔗](https://github.com/Tango-Tango/ex_stream_client/blob/main/lib/ex_stream_client/model/call_response.ex#L1)

Schema representing a CallResponse

# `t`

```elixir
@type t() :: %ExStreamClient.Model.CallResponse{
  backstage: boolean(),
  blocked_user_ids: [String.t()],
  captioning: boolean(),
  channel_cid: String.t() | nil,
  cid: String.t(),
  created_at: DateTime.t() | integer() | String.t(),
  created_by: ExStreamClient.Model.UserResponse.t() | nil,
  current_session_id: String.t(),
  custom: %{optional(String.t()) =&gt; any()},
  ended_at: (DateTime.t() | integer() | String.t()) | nil,
  id: String.t(),
  join_ahead_time_seconds: integer() | nil,
  recording: boolean(),
  routing_number: String.t() | nil,
  starts_at: (DateTime.t() | integer() | String.t()) | nil,
  team: String.t() | nil,
  transcribing: boolean(),
  translating: boolean(),
  type: String.t(),
  updated_at: DateTime.t() | integer() | String.t()
}
```

# `decode`

Components could just be enums that are typed - so we need to decode those as enums as they will just be stings

# `nested_components`

---

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