public void GetImagesAsync(GetFundraisingPageImagesRequest request, Action<FundraisingPageImages> callback)
 {
     var locationFormat = FundraisingPageImagesLocationFormat(request.PageShortName);
     HttpChannel.PerformRequestAsync("GET",locationFormat,request,callback);
 }
 public FundraisingPageImages GetImages(GetFundraisingPageImagesRequest request)
 {
     var locationFormat = FundraisingPageImagesLocationFormat(request.PageShortName);
     return HttpChannel.PerformRequest<FundraisingPageImages>("GET", locationFormat);
 }