forked from robbiehanson/XMPPFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXMPPvCardTempTel.h
38 lines (29 loc) · 1.06 KB
/
XMPPvCardTempTel.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
33
34
35
36
37
38
//
// XMPPvCardTempTel.h
// XEP-0054 vCard-temp
//
// Created by Eric Chamberlain on 3/9/11.
// Copyright 2011 RF.com. All rights reserved.
// Copyright 2010 Martin Morrison. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "XMPPvCardTempBase.h"
NS_ASSUME_NONNULL_BEGIN
@interface XMPPvCardTempTel : XMPPvCardTempBase
+ (XMPPvCardTempTel *)vCardTelFromElement:(NSXMLElement *)elem;
@property (nonatomic, assign) BOOL isHome;
@property (nonatomic, assign) BOOL isWork;
@property (nonatomic, assign) BOOL isVoice;
@property (nonatomic, assign) BOOL isFax;
@property (nonatomic, assign) BOOL isPager;
@property (nonatomic, assign) BOOL hasMessaging;
@property (nonatomic, assign) BOOL isCell;
@property (nonatomic, assign) BOOL isVideo;
@property (nonatomic, assign) BOOL isBBS;
@property (nonatomic, assign) BOOL isModem;
@property (nonatomic, assign) BOOL isISDN;
@property (nonatomic, assign) BOOL isPCS;
@property (nonatomic, assign) BOOL isPreferred;
@property (nonatomic, nullable) NSString *number;
@end
NS_ASSUME_NONNULL_END