# `AccessGrid.CardTemplate.Result`
[🔗](https://github.com/Access-Grid/accessgrid-ex/blob/main/lib/access_grid/card_template.ex#L109)

Represents the response from template create/update operations.

This is a minimal acknowledgment containing only the template ID,
estimated publishing date, and metadata. For full template data,
use `AccessGrid.Console.read_template/2` which returns `AccessGrid.CardTemplate`.

# `t`

```elixir
@type t() :: %AccessGrid.CardTemplate.Result{
  estimated_publishing_date: String.t() | nil,
  id: String.t() | nil,
  metadata: map()
}
```

# `from_response`

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

Creates a Result struct from an API response map.

---

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