diff --git a/src/Discord.Net.Core/Entities/Users/IUser.cs b/src/Discord.Net.Core/Entities/Users/IUser.cs index af51d9bb4..6f78a5ab9 100644 --- a/src/Discord.Net.Core/Entities/Users/IUser.cs +++ b/src/Discord.Net.Core/Entities/Users/IUser.cs @@ -124,8 +124,15 @@ namespace Discord /// int Flags { get; } /// - /// The type of Nitro subscription + /// The type of Nitro subscription that is active on this user's account. /// + /// + /// This information may only be available with the identify OAuth scope, + /// meaning that users and bots will not have access to this information. + /// + /// + /// The type of Nitro subscription the user subscribes to, or null if this value could not be determined. + /// PremiumType? PremiumType { get; } } }