AliyunEditorBaseProject
@interface AliyunEditorBaseProject : NSObject
* The base model of editor project
-
* The Current Version of sdk
Declaration
Objective-C
@property (class, nonatomic, readonly) int CurrentVersion; -
* The version of this project file
Declaration
Objective-C
@property (nonatomic, readonly) int version; -
* The projectid, define by user, default is nil
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *projectId; -
* The title
Declaration
Objective-C
@property (nonatomic, copy) NSString *title; -
* The Create time
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *createTime; -
* The modified time
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *modifiedTime; -
* The project status. (current not use, is nil)
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *status; -
* The detail info of project
Declaration
Objective-C
@property (nonatomic, copy) NSString *info; -
* The duration (second)
Declaration
Objective-C
@property (nonatomic, readonly) NSTimeInterval duration; -
* The resource size. (KB)
Declaration
Objective-C
@property (nonatomic, readonly) size_t resourceSize; -
* The config of project
Declaration
Objective-C
@property (nonatomic, strong, readonly) AEPConfig *config; -
* The source of Cover
Declaration
Objective-C
@property (nonatomic, strong, readonly) AEPSource *cover; -
* The source of Template, if generated by template editor
Declaration
Objective-C
@property (nonatomic, strong, readonly) AEPSource *templateSource;
AliyunEditorBaseProject Class Reference