diff --git a/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs b/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs
index beec4eebc..23f88687d 100644
--- a/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs
+++ b/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs
@@ -13,36 +13,65 @@ namespace Discord
///
/// Gets the song's artist(s).
///
+ ///
+ /// A collection of string containing all artists featured in the track (e.g. Avicii; Rita Ora).
+ ///
public IReadOnlyCollection Artists { get; internal set; }
///
/// Gets the Spotify album title of the song.
///
+ ///
+ /// A string containing the name of the album (e.g. AVĪCI (01)).
+ ///
public string AlbumTitle { get; internal set; }
///
/// Gets the track title of the song.
///
+ ///
+ /// A string containing the name of the song (e.g. Lonely Together (feat. Rita Ora)).
+ ///
public string TrackTitle { get; internal set; }
///
/// Gets the duration of the song.
///
+ ///
+ /// A containing the duration of the song.
+ ///
public TimeSpan? Duration { get; internal set; }
///
/// Gets the track ID of the song.
///
+ ///
+ /// A string containing the Spotify ID of the track (e.g. 7DoN0sCGIT9IcLrtBDm4f0).
+ ///
public string TrackId { get; internal set; }
///
/// Gets the session ID of the song.
///
+ ///
+ /// The purpose of this property is currently unknown.
+ ///
+ ///
+ /// A string containing the session ID.
+ ///
public string SessionId { get; internal set; }
///
/// Gets the URL of the album art.
///
+ ///
+ /// A URL pointing to the album art of the track (e.g.
+ /// https://i.scdn.co/image/ba2fd8823d42802c2f8738db0b33a4597f2f39e7).
+ ///
public string AlbumArtUrl { get; internal set; }
///
/// Gets the direct Spotify URL of the track.
///
+ ///
+ /// A URL pointing directly to the track on Spotify. (e.g.
+ /// https://open.spotify.com/track/7DoN0sCGIT9IcLrtBDm4f0).
+ ///
public string TrackUrl { get; internal set; }
internal SpotifyGame() { }
@@ -50,6 +79,10 @@ namespace Discord
///
/// Gets the full information of the song.
///
+ ///
+ /// A string containing the full information of the song (e.g.
+ /// Avicii, Rita Ora - Lonely Together (feat. Rita Ora) (3:08)
+ ///
public override string ToString() => $"{string.Join(", ", Artists)} - {TrackTitle} ({Duration})";
private string DebuggerDisplay => $"{Name} (Spotify)";
}