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

Report the destinations for the given association group

Params:

  * `:grouping_identifier` - the grouping identifier for the the association
    group (required)
  * `:max_nodes_supported` - the max number of destinations for the
    association group (required)
  * `:reports_to_follow` - if the full destination list is too long for one
    report this field reports the number of follow up reports (optional
    default `0`)
  * `:nodes` - the destination nodes in the association group (required)

# `param`

```elixir
@type param() ::
  {:grouping_identifier, byte()}
  | {:max_nodes_supported, byte()}
  | {:reports_to_follow, byte()}
  | {:nodes, [Grizzly.ZWave.node_id()]}
```

---

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