Skip to content
HCPUpdateRequest.h 585 B
Newer Older
wangqinghua's avatar
wangqinghua committed
//
//  HCPUpdateRequest.h
//
//  Created by Nikolay Demyankov on 24.05.16.
//

#import <Foundation/Foundation.h>

@interface HCPUpdateRequest : NSObject

/**
 *  URL to the application config on the server.
 */
@property (nonatomic, strong) NSURL *configURL;

/**
 *  Current working version of the web content.
 */
@property (nonatomic, strong) NSString *currentWebVersion;

/**
 *  Current native version of the app.
 */
@property (nonatomic) NSUInteger currentNativeVersion;

/**
 *  Additional request headers.
 */
@property (nonatomic, strong) NSDictionary *requestHeaders;

@end