# `PdfElixide.Form.Field`
[🔗](https://github.com/r8/pdf_elixide/blob/v0.3.1/lib/pdf_elixide/form/field.ex#L1)

Representation of a form field within a PDF document.

# `kind`

```elixir
@type kind() :: :button | :text | :choice | :signature | :unknown
```

# `t`

```elixir
@type t() :: %PdfElixide.Form.Field{kind: kind(), name: String.t(), value: value()}
```

# `value`

```elixir
@type value() ::
  {:text, String.t()}
  | {:boolean, boolean()}
  | {:name, String.t()}
  | {:array, [String.t()]}
  | nil
```

---

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