-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNFCard.h
32 lines (26 loc) · 783 Bytes
/
NFCard.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Generated by RuntimeBrowser.
Image: /System/Library/PrivateFrameworks/NearField.framework/NearField
*/
@class NSString;
@interface NFCard : NSObject {
unsigned char _family;
unsigned char _lifecycleState;
unsigned char _activationState;
bool_authTransientSupport;
NSString *_aid;
}
@property(readonly) NSString * aid;
@property(readonly) unsigned char family;
@property(readonly) unsigned char lifecycleState;
@property(readonly) unsigned char activationState;
@property(readonly) bool authTransientSupport;
- (id)aid;
- (unsigned char)lifecycleState;
- (unsigned char)activationState;
- (unsigned char)family;
- (bool)authTransientSupport;
- (void)setIsActive:(bool)arg1;
- (id)initWithDictionary:(id)arg1;
- (id)description;
- (void)dealloc;
@end