# `ExSDP.Timing`
[🔗](https://github.com/membraneframework/ex_sdp/blob/v1.1.4/lib/ex_sdp/timing.ex#L1)

This module represents the Timing field of SDP that specifies
the start and end time of the session.

For more details please see [RFC4566 Section 5.9](https://tools.ietf.org/html/rfc4566#section-5.9)

# `t`

```elixir
@type t() :: %ExSDP.Timing{
  start_time: non_neg_integer(),
  stop_time: non_neg_integer()
}
```

# `parse`

```elixir
@spec parse(binary()) :: {:ok, t()} | {:error, :invalid_timing}
```

---

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