Repository URL to install this package:
//
// DEFileDownloadCallbackData.h
// DynamicEngine
//
// Created by Mobile3D on 26/01/15.
// Copyright (c) 2015 Mobile3D. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface DEFileDownloadCallbackData : NSObject
- (instancetype) initWithStatus:(NSString *) status andCallbackTag:(NSString *) callbackTag;
- (void) setError:(NSError *) error;
- (void) setErrorCode:(NSString *) errorCode andErrorMessage:(NSString *) errorMessage;
- (void) setFilePath:(NSString *) filePath andFileUTI:(NSString*)fileUTI andContentType:(NSString *) contentType;
- (NSString *) callbackDataAsString;
- (NSError*)error;
- (NSString*)errorCode;
- (NSString*)errorMessage;
- (NSString*)filePath;
- (NSString*)contentType;
- (NSString*)fileUTI;
@end