/**
 * Appcelerator Platform SDK
 * Copyright (c) 2014 by Appcelerator, Inc. All Rights Reserved.
 * Proprietary and Confidential - This source code is not for redistribution
 */

#import "APSCloud.h"

@interface APSRequest : NSObject

- (void)sendRequest:(NSString *)url
             method:(NSString *)httpMethod
               data:(NSDictionary *)paramDict
            handler:(APSResponseHandler)handler;

- (void)sendRequest:(NSString *)url
             method:(NSString *)httpMethod
               data:(NSDictionary *)paramDict
            handler:(APSResponseHandler)handler
           progress:(APSProgressHandler)progressHandler;

@end
