| @@ -12,12 +12,12 @@ namespace Discord | |||||
| public interface IApplicationCommandInteractionDataOption | public interface IApplicationCommandInteractionDataOption | ||||
| { | { | ||||
| /// <summary> | /// <summary> | ||||
| /// The name of the parameter. | |||||
| /// Gets the name of the parameter. | |||||
| /// </summary> | /// </summary> | ||||
| string Name { get; } | string Name { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The value of the pair. | |||||
| /// Gets the value of the pair. | |||||
| /// <note> | /// <note> | ||||
| /// This objects type can be any one of the option types in <see cref="ApplicationCommandOptionType"/> | /// This objects type can be any one of the option types in <see cref="ApplicationCommandOptionType"/> | ||||
| /// </note> | /// </note> | ||||
| @@ -25,12 +25,12 @@ namespace Discord | |||||
| object Value { get; } | object Value { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// The type of this data's option. | |||||
| /// Gets the type of this data's option. | |||||
| /// </summary> | /// </summary> | ||||
| ApplicationCommandOptionType Type { get; } | ApplicationCommandOptionType Type { get; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Present if this option is a group or subcommand. | |||||
| /// Gets the nested options of this option. | |||||
| /// </summary> | /// </summary> | ||||
| IReadOnlyCollection<IApplicationCommandInteractionDataOption> Options { get; } | IReadOnlyCollection<IApplicationCommandInteractionDataOption> Options { get; } | ||||