zdk.objc
ZDKIAXConfig.h
1//
2// ZDKIAXConfig.h
3// ZDK
4//
5
6#ifndef ZDKIAXConfig_h
7#define ZDKIAXConfig_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKIAXConfig.h"
11#import "ZDKZHandle.h"
12#import "ZDKIAXConfig.h"
13@protocol ZDKIAXConfig;
14
15NS_ASSUME_NONNULL_BEGIN
16
20
25@property(nonatomic) NSString* host;
26
31@property(nonatomic) NSString* context;
32
37@property(nonatomic) NSString* _Nullable callerID;
38
43@property(nonatomic) NSString* _Nullable callerNumber;
44
53-(BOOL)isEqual:(id<ZDKIAXConfig>)comp ;
54-(NSString*)handlesDescription;
55
56@end
57
58NS_ASSUME_NONNULL_END
59
60#endif
IAX specific account configuration.
Definition: ZDKIAXConfig.h:19
NSString * context
Configures the context to be used.
Definition: ZDKIAXConfig.h:31
NSString * host
Configures the server/host address to be used.
Definition: ZDKIAXConfig.h:25
NSString *_Nullable callerID
Configures the caller ID used for identification.
Definition: ZDKIAXConfig.h:37
NSString *_Nullable callerNumber
Configures the caller number used for identification.
Definition: ZDKIAXConfig.h:43
Definition: ZDKZHandle.h:13