/// <summary>
 /// Add User Playback Queue Handler
 /// </summary>
 /// <param name="client">Spotify Sdk Client</param>
 /// <param name="response">Play Item Response</param>
 public static async void AddUserPlaybackQueueHandler(
     this ISpotifySdkClient client,
     IPlayItemResponse response) =>
 await client.AddUserPlaybackQueueAsync(
     response.PlayItemType,
     response.Id);
        public async Task Test_AddUserPlaybackQueue_Track()
        {
            var status = await _client.AddUserPlaybackQueueAsync(PlayItemType.Track, "3gYveYzeG2u9I7dDhTfBsJ");

            Assert.IsTrue(status.Success);
        }