# `ExGram.Model.PassportElementErrorFiles`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L7313)

Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#passportelementerrorfiles)

- `source`: Error source, must be files
- `type`: The section of the user's Telegram Passport which has the issue, one of "utility_bill”, "bank_statement”, "rental_agreement”, "passport_registration”, "temporary_registration”
- `file_hashes`: List of base64-encoded file hashes
- `message`: Error message

# `t`

```elixir
@type t() :: %ExGram.Model.PassportElementErrorFiles{
  file_hashes: [String.t()],
  message: String.t(),
  source: String.t(),
  type: String.t()
}
```

# `decode_as`

---

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