EXPUserProfile Class Reference
| Inherits from | NSObject |
|---|---|
| Declared in | EXPUserProfile.h |
Overview
The EXPUserProfile provides user profile information to the Verint SDK
Instances of this class can be registered with the SDK using @c Verint#setUserProfile:
email
An email address for the user
@property (nonatomic, copy) NSString *emailDeclared In
EXPUserProfile.h
phoneNumber
A phone number for the user
@property (nonatomic, copy) NSString *phoneNumberDeclared In
EXPUserProfile.h
facebookHandle
A Facebook handle for the user
@property (nonatomic, copy) NSString *facebookHandleDeclared In
EXPUserProfile.h
twitterHandle
A Twitter handle for the user
@property (nonatomic, copy) NSString *twitterHandleDeclared In
EXPUserProfile.h
– setString:forKey:
Sets a string value for the given key for this user.
- (void)setString:(NSString *)value forKey:(NSString *)keyParameters
value |
a string value |
|---|---|
key |
the key |
Declared In
EXPUserProfile.h
– setNumber:forKey:
Sets a numeric value for the given key for this user.
- (void)setNumber:(NSNumber *)value forKey:(NSString *)keyParameters
value |
a numeric value |
|---|---|
key |
the key |
Declared In
EXPUserProfile.h
– setBoolean:forKey:
Sets a boolean value for the given key for this user.
- (void)setBoolean:(BOOL)value forKey:(NSString *)keyParameters
value |
a boolean value |
|---|---|
key |
the key |
Declared In
EXPUserProfile.h
toDictionary
Creates and returns a dictionary containing all previously set user profile values.
@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSDictionary *toDictionaryReturn Value
a dictionary containing all user properties
Discussion
This method returns all defined keys (i.e. those set using existing properties) and values set using the generic typed setters.
Declared In
EXPUserProfile.h