CocoaShare/Classes/Dropbox/DropboxSDK/DBMetadata.h

39 lines
798 B
C
Raw Normal View History

2011-02-01 09:51:02 -06:00
//
// DBMetadata.h
// DropboxSDK
//
// Created by Brian Smith on 5/3/10.
// Copyright 2010 Dropbox, Inc. All rights reserved.
//
@interface DBMetadata : NSObject <NSCoding> {
BOOL thumbnailExists;
long long totalBytes;
NSDate* lastModifiedDate;
NSString* path;
BOOL isDirectory;
NSArray* contents;
NSString* hash;
NSString* humanReadableSize;
NSString* root;
NSString* icon;
long long revision;
BOOL isDeleted;
}
- (id)initWithDictionary:(NSDictionary*)dict;
- (BOOL)thumbnailExists;
- (long long)totalBytes;
- (NSDate *)lastModifiedDate;
- (NSString *)path;
- (BOOL)isDirectory;
- (NSArray *)contents;
- (NSString *)hash;
- (NSString *)humanReadableSize;
- (NSString *)root;
- (NSString *)icon;
- (long long)revision;
- (BOOL)isDeleted;
@end