ContentFileInfoType
IntroductionThe ContentFileInfoType object stores all details relating to a single content file. Properties
allowCopy@property (nonatomic, retain) NSNumber *allowCopy; DiscussionA Boolean value denoting whether or not to allow copying of the file.
allowShare@property (nonatomic, retain) NSNumber *allowShare; DiscussionA Boolean value denoting whether or not to allow sharing of the file.
availableOverConnectionTypesNative@property (nonatomic, retain) NSNumber *availableOverConnectionTypesNative; DiscussionThe connection types over which file download is available over. See
categories@property (nonatomic, retain) NSArray *categories; DiscussionThe list of categories the file falls under.
creationDate@property (nonatomic, retain) NSDate *creationDate; DiscussionThe date the file was created.
effectiveDate@property (nonatomic, retain) NSDate *effectiveDate; DiscussionThe date when the file becomes available.
expirationDate@property (nonatomic, retain) NSDate *expirationDate; DiscussionThe expiration date of the file.
fileAttributes@property (nonatomic, retain) NSNumber *fileAttributes; DiscussionThe attributes of a file, e.g. readonly, directory, normal, etc.
fileDescription@property (nonatomic, retain) NSString *fileDescription; DiscussionThe description of the file.
fileId@property (nonatomic, retain) NSNumber *fileId; DiscussionThe identifier of the file.
fileSize@property (nonatomic, retain) NSNumber *fileSize; DiscussionThe size of the file.
fileStatus@property (nonatomic, retain) NSNumber * fileStatus; DiscussionFile download status.
friendlyFileName@property (nonatomic, retain) NSString *friendlyFileName; DiscussionThe friendly name for the file.
isDirectory@property (nonatomic, readonly) BOOL isDirectory; DiscussionA Boolean value denoting whether or not the file is in fact a directory of files.
isLatestFileVersion@property (nonatomic, retain) NSNumber *isLatestFileVersion; DiscussionA Boolean value denoting whether or not the file of it's latest version.
isNew@property (nonatomic, retain) NSNumber *isNew; DiscussionA Boolean value denoting whether or not the file is considered new. The field is not controlled/changed/modified by SDK layer somehow. Just keeps this value at the storage. It's NO by default. Client is responsible for changing the value.
isOnDemand@property (nonatomic, retain) NSNumber *isOnDemand; DiscussionA Boolean value denoting whether or not the file is on demand.
lastModifiedDate@property (nonatomic, retain) NSDate *lastModifiedDate; DiscussionThe date at which the file was last modified.
physicalFullFileName@property (nonatomic, retain) NSString *physicalFullFileName; DiscussionThe physical full name for the file.
sourceFileName@property (nonatomic, retain) NSString *sourceFileName; DiscussionThe source name for the file.
userNotes@property (nonatomic, retain) NSString *userNotes; DiscussionThe user-modifiable notes regarding the file.
versionNo@property (nonatomic, retain) NSNumber *versionNo; DiscussionThe version number of the file.
|