# `Grizzly.ZWave.Commands.AntitheftUnlockReport`
[🔗](https://github.com/smartrent/grizzly/blob/v9.1.4/lib/grizzly/zwave/commands/antitheft_unlock_report.ex#L1)

This command is used to advertise the current locked/unlocked state of the
node with some additional information.

Params:

  * `:state` - This field MUST indicate the current :locked/:unlocked state of
    the device (required)
  * `:restricted` - This boolean field indicates whether the node currently
    runs in restricted mode (required)
  * `:manufacturer_id` - This field describes the Z-Wave Manufacturer ID of
    the company’s product that has locked the node (required)
  * `:antitheft_hint` - This field is used as a 1 to 10 byte identifier or key
    value to help retrieving the Magic Code (required)
  * `:locking_entity_id` - This field specifies a unique Z-Wave Alliance
    identifier for the entity that has locked the node (required)

# `param`

```elixir
@type param() ::
  {:state, state()}
  | {:restricted, boolean()}
  | {:manufacturer_id, non_neg_integer()}
  | {:antitheft_hint, String.t()}
  | {:locking_entity_id, non_neg_integer()}
```

# `state`

```elixir
@type state() :: :locked | :unlocked
```

---

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