Export
exports["billing_ui"]:deleteBillId(billId)
Parameters
| Name | Data Type | Description |
|---|---|---|
billId | integer | The bill ID, found in the database table billing |
Example
-- Example command /deleteBillId 51
RegisterCommand("deleteBillId", function(playerId, args)
local billId = tonumber(args[1])
exports["billing_ui"]:deleteBillId(billId)
end)
