# `Twilio.Events.V1.TypeService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/events/v1/type_service.ex#L2)

Event Types available

Operations: `list`, `fetch`

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Events.V1.Type.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch a specific Event Type.

Operation: `FetchEventType` | Tags: EventsV1EventType

# `list`

```elixir
@spec list(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieve a paginated list of all the available Event Types.

Operation: `ListEventType` | Tags: EventsV1EventType

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `SchemaId` | string | A string parameter filtering the results to return only the Event Types using a given schema. |

# `stream`

```elixir
@spec stream(Twilio.Client.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Retrieve a paginated list of all the available Event Types. (lazy auto-pagination).

---

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