SystemChannelFlags
EnumOn this page
discord.SystemChannelFlags lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.SystemChannelFlags.SuppressJoinNotifications1 << 0Suppress Join Notifications. Use the symbolic name in bot code rather than the raw value.
discord.SystemChannelFlags.SuppressPremiumSubscriptions1 << 1Suppress Premium Subscriptions. Use the symbolic name in bot code rather than the raw value.
discord.SystemChannelFlags.SuppressGuildReminderNotifications1 << 2Suppress Guild Reminder Notifications. Use the symbolic name in bot code rather than the raw value.
discord.SystemChannelFlags.SuppressJoinNotificationReplies1 << 3Suppress Join Notification Replies. Use the symbolic name in bot code rather than the raw value.
discord.SystemChannelFlags.SuppressRoleSubscriptionPurchaseNotifications1 << 4Suppress Role Subscription Purchase Notifications. Use the symbolic name in bot code rather than the raw value.
discord.SystemChannelFlags.SuppressRoleSubscriptionPurchaseNotificationReplies1 << 5Suppress Role Subscription Purchase Notification Replies. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.SystemChannelFlags.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.SystemChannelFlags.SuppressJoinNotifications)