public void GetProducts(string collectionId, Action <IEnumerable <Product>, Response> success, Action <RetrofitError> failure)
 {
     // For this sample app, we'll just fetch the first page of products in the collection
     BuyClient.GetProducts(1, collectionId, success, failure);
 }