Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
DBAccountInfo.h
Go to the documentation of this file.
1 //
2 // DBAccountInfo.h
3 // DropboxSDK
4 //
5 // Created by Brian Smith on 5/3/10.
6 // Copyright 2010 Dropbox, Inc. All rights reserved.
7 //
8 
9 
10 #import "DBQuota.h"
11 
12 @interface DBAccountInfo : NSObject <NSCoding> {
13  NSString* country;
14  NSString* displayName;
16  NSString* userId;
17  NSString* referralLink;
18  NSDictionary* original;
19 }
20 
21 - (id)initWithDictionary:(NSDictionary*)dict;
22 
23 @property (nonatomic, readonly) NSString* country;
24 @property (nonatomic, readonly) NSString* displayName;
25 @property (nonatomic, readonly) DBQuota* quota;
26 @property (nonatomic, readonly) NSString* userId;
27 @property (nonatomic, readonly) NSString* referralLink;
28 
29 @end