# GetOfficerSuspended

***

Get a officers suspended state

```lua
---@param stateid string
---@return boolean
exports.drx_mdt:GetOfficerSuspended()
```

***

Example using source

```lua
local function getOfficerSuspendedBySource(source)
  local suspended = exports.drx_mdt:GetOfficerSuspended({ source = source })
end
```

Example using stateid

```lua
local function getOfficerSuspendedByStateid(source)
  local stateid = exports.drx_mdt:GetStateId({ source = source })
  local suspended = exports.drx_mdt:GetOfficerSuspended({ stateid = stateid })
end
```
