namespace Discord.Interactions { /// /// Resource targets for localization. /// public enum LocalizationTarget { /// /// Target is a tagged with a . /// Group, /// /// Target is an application command method. /// Command, /// /// Target is a Slash Command parameter. /// Parameter, /// /// Target is a Slash Command parameter choice. /// Choice } }