| @@ -18,27 +18,27 @@ namespace Discord | |||||
| ComponentType Type { get; } | ComponentType Type { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Gets the value(s) of a <see cref="ComponentType.SelectMenu"/> interaction response. | |||||
| /// Gets the value(s) of a <see cref="ComponentType.SelectMenu"/> interaction response. Null if select type is different. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<string> Values { get; } | IReadOnlyCollection<string> Values { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Gets the channels(s) of a <see cref="ComponentType.ChannelSelect"/> interaction response. | |||||
| /// </summary> | |||||
| /// Gets the channels(s) of a <see cref="ComponentType.ChannelSelect"/> interaction response. Null if select type is different. | |||||
| /// </summary> | |||||
| IReadOnlyCollection<IChannel> Channels { get; } | IReadOnlyCollection<IChannel> Channels { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Gets the user(s) of a <see cref="ComponentType.UserSelect"/> or <see cref="ComponentType.MentionableSelect"/> interaction response. | |||||
| /// Gets the user(s) of a <see cref="ComponentType.UserSelect"/> or <see cref="ComponentType.MentionableSelect"/> interaction response. Null if select type is different. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<IUser> Users { get; } | IReadOnlyCollection<IUser> Users { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Gets the roles(s) of a <see cref="ComponentType.RoleSelect"/> or <see cref="ComponentType.MentionableSelect"/> interaction response. | |||||
| /// Gets the roles(s) of a <see cref="ComponentType.RoleSelect"/> or <see cref="ComponentType.MentionableSelect"/> interaction response. Null if select type is different. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<IRole> Roles { get; } | IReadOnlyCollection<IRole> Roles { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Gets the guild member(s) of a <see cref="ComponentType.UserSelect"/> or <see cref="ComponentType.MentionableSelect"/> interaction response. | |||||
| /// Gets the guild member(s) of a <see cref="ComponentType.UserSelect"/> or <see cref="ComponentType.MentionableSelect"/> interaction response. Null if type select is different. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<IGuildUser> Members { get; } | IReadOnlyCollection<IGuildUser> Members { get; } | ||||