mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
33 lines
824 B
ReStructuredText
33 lines
824 B
ReStructuredText
.. include:: ./vars.rst
|
|
|
|
PermissionOverwrite
|
|
===================
|
|
|
|
PermissionOverwrite is used to represent data about permission overwrites for roles or users in channels.
|
|
|
|
--------
|
|
|
|
Attributes
|
|
----------
|
|
|
|
--------
|
|
|
|
id
|
|
~~
|
|
|
|
`String`, the ID of the PermissionOverwrite. If ``overwrite.type`` is ``role``, this is the role's ID. Otherwise, it is a User_ overwrite.
|
|
|
|
type
|
|
~~~~
|
|
|
|
`String`, type of the overwrite. Either ``member`` or ``role``.
|
|
|
|
allowed
|
|
~~~~~~~
|
|
|
|
Returns the permissions explicitly allowed by the overwrite. An `Array` of Strings, which are names of permissions. More can be found at `Permission Constants`_
|
|
|
|
denied
|
|
~~~~~~
|
|
|
|
Returns the permissions explicitly denied by the overwrite. An `Array` of Strings, which are names of permissions. More can be found at `Permission Constants`_ |