# tmux.UnbindKeyRequest

- **Module:** tmux
- **Package:** github.com/libtmux/libtmux-go/tmux
- **Language:** Go
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-go/blob/52968a3181c1c9e6d1b26c565d4b170968ae61c0/tmux/server_keys.go#L27
- **Page:** https://libtmux.org/en/go/latest/reference/tmux-unbindkeyrequest/

UnbindKeyRequest selects one key or an entire key table to unbind. Exactly one of Key and AllKeys must be set.

## Members

- `Key` (attribute): Key selects one binding; it is mutually exclusive with AllKeys.
- `KeyTable` (attribute): KeyTable limits removal to one table; nil selects tmux's default table.
- `AllKeys` (attribute): AllKeys removes every binding in KeyTable and is mutually exclusive with Key.
- `Quiet` (attribute): Quiet suppresses tmux's missing-binding diagnostic.
