Class RoleMenuProperties
public class RoleMenuProperties : EntityMenuProperties, IInteractiveComponentProperties, IMessageComponentProperties, IJsonSerializable<IMessageComponentProperties>, IComponentContainerComponentProperties, IJsonSerializable<IComponentContainerComponentProperties>, ILabelComponentProperties, IComponentProperties, IJsonSerializable<ILabelComponentProperties>
- Inheritance
-
RoleMenuProperties
- Implements
- Inherited Members
Constructors
RoleMenuProperties(string)
public RoleMenuProperties(string customId)
Parameters
customIdstring
Properties
ComponentType
Type of the component.
public override ComponentType ComponentType { get; }
Property Value
DefaultValues
Default values for auto-populated select menu components.
[JsonConverter(typeof(RoleMenuProperties.DefaultValuesConverter))]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
[JsonPropertyName("default_values")]
public IEnumerable<ulong>? DefaultValues { get; set; }
Property Value
Methods
AddDefaultValues(params IEnumerable<ulong>)
Default values for auto-populated select menu components.
public RoleMenuProperties AddDefaultValues(params IEnumerable<ulong> defaultValues)
Parameters
defaultValuesIEnumerable<ulong>
Returns
WithCustomId(string)
Developer-defined identifier for the component (max 100 characters).
public RoleMenuProperties WithCustomId(string customId)
Parameters
customIdstring
Returns
WithDefaultValues(IEnumerable<ulong>?)
Default values for auto-populated select menu components.
public RoleMenuProperties WithDefaultValues(IEnumerable<ulong>? defaultValues)
Parameters
defaultValuesIEnumerable<ulong>
Returns
WithDisabled(bool)
Whether the menu is disabled.
public RoleMenuProperties WithDisabled(bool disabled = true)
Parameters
disabledbool
Returns
WithId(int?)
Unique identifier for the component. Auto populated through increment if not provided.
public RoleMenuProperties WithId(int? id)
Parameters
idint?
Returns
WithMaxValues(int?)
Maximum number of items that can be chosen, default 1 (max 25).
public RoleMenuProperties WithMaxValues(int? maxValues)
Parameters
maxValuesint?
Returns
WithMinValues(int?)
Minimum number of items that must be chosen, default 1 (0-25).
public RoleMenuProperties WithMinValues(int? minValues)
Parameters
minValuesint?
Returns
WithParentId(int?)
public RoleMenuProperties WithParentId(int? parentId)
Parameters
parentIdint?
Returns
WithPlaceholder(string?)
Placeholder text if nothing is selected (max 150 characters).
public RoleMenuProperties WithPlaceholder(string? placeholder)
Parameters
placeholderstring
Returns
WithRequired(bool?)
Whether the menu is required to answer in a modal. Defaults to true.
public RoleMenuProperties WithRequired(bool? required = true)
Parameters
requiredbool?