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

Schema representing a PushTemplate

# `t`

```elixir
@type t() :: %ExStreamClient.Model.PushTemplate{
  created_at: DateTime.t() | integer() | String.t(),
  enable_push: boolean(),
  event_type:
    :&quot;feeds.notification_feed.updated&quot;
    | :&quot;feeds.follow.created&quot;
    | :&quot;feeds.comment.reaction.added&quot;
    | :&quot;feeds.activity.reaction.added&quot;
    | :&quot;feeds.comment.added&quot;
    | :&quot;feeds.activity.added&quot;
    | :&quot;notification.reminder_due&quot;
    | :&quot;reaction.new&quot;
    | :&quot;message.updated&quot;
    | :&quot;message.new&quot;,
  template: String.t() | nil,
  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*
