Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 739 Bytes

File metadata and controls

26 lines (20 loc) · 739 Bytes

Zernio::CreateDiscordGuildRoleRequest

Properties

Name Type Description Notes
name String
color Integer Decimal color (0 = no color). 0xFF0000 red is 16711680. [optional]
hoist Boolean Display members with this role separately in the member list [optional]
mentionable Boolean Allow anyone to @mention this role [optional]
permissions String Permissions bitfield as a stringified integer [optional]

Example

require 'zernio-sdk'

instance = Zernio::CreateDiscordGuildRoleRequest.new(
  name: null,
  color: null,
  hoist: null,
  mentionable: null,
  permissions: null
)