Interface IGuildOnboardingPrompt
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
Represents the guild onboarding prompt.
public interface IGuildOnboardingPrompt : ISnowflakeEntity, IEntity<ulong>
- Inherited Members
- Extension Methods
Properties
IsInOnboarding
Indicates whether the prompt is present in the onboarding flow. If false, the prompt will only appear in the Channels and Roles tab.
bool IsInOnboarding { get; }
Property Value
IsRequired
Indicates whether the prompt is required before a user completes the onboarding flow.
bool IsRequired { get; }
Property Value
IsSingleSelect
Indicates whether users are limited to selecting one option for the prompt.
bool IsSingleSelect { get; }
Property Value
Options
Gets options available within the prompt.
IReadOnlyCollection<IGuildOnboardingPromptOption> Options { get; }
Property Value
Title
Gets the title of the prompt.
string Title { get; }
Property Value
Type
Gets the type of the prompt.
GuildOnboardingPromptType Type { get; }