/// <summary>
 /// Returns a list of videos associated with the cloudId and accessKey supplied to the VideoService
 /// </summary>
 /// <returns>A list of videos contained in a particular cloud</returns>
 public IList <Video> GetVideos()
 {
     return(JsonSerializer.Deserialize <IList <Video> >(
                _proxy.GetJson("videos.json", EmptyParameterList)));
 }