Version 1.2 - Updated on 7/14/2016
Superclass: NSObject
Declared In: PCResourceItem.h
This class stores the metadata information of a ResourceItem
, such as a file or a folder.
- (id)initWithDBResourceID:(NSManagedObjectID *)managedObjectID;
PCResourceItem
using a managedObjectID
. managedObjectID is mapped with
coredataobject and a
PCResourceItem` is created out of the values copied from the coredata object.checkSum
@property (nonatomic, readonly, copy) NSString *checkSum;
contentToken
@property (nonatomic, readonly, copy) NSString *contentToken;
contentToken
changes when the file content is updated. Required for certain APIs, such as GET /thumbnails
.deleted
@property (nonatomic, readonly, strong) NSNumber *deleted;
extension
@property (nonatomic, readonly, copy) NSString *extension;
fullPath
@property (nonatomic, readonly, copy) NSString *fullPath;
name
@property (nonatomic, readonly, copy) NSString *name;
parentPath
@property (nonatomic, readonly, copy) NSString *parentPath;
size
@property (nonatomic, readonly, strong) NSNumber *size;
version
@property (nonatomic, readonly, strong) NSNumber *version;
versionCreated
@property (nonatomic, readonly, strong) NSDate *versionCreated;
Copyright © 2015-2017, Verizon and/or its Licensors. All rights reserved.