Bold360 and BoldChat Developer Center

BoldChatAccountSettings.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 #import "BCAccount.h"
7 
12 @interface BoldChatAccountSettings : NSObject
13 
18 @property(nonatomic, strong)BCAccount *account;
19 
24 @property(nonatomic, strong)NSString *visitorId;
25 
30 @property(nonatomic, assign)BOOL skipPreChat;
31 
36 @property(nonatomic, copy)NSDictionary *extraParams;
37 
42 @property(nonatomic, copy)NSString *secureParams;
43 
44 @end
NSDictionary * extraParams
The answers for the skipped pre chat and external parameters.
Definition: BoldChatAccountSettings.h:36
Boldchat account related settings.
Definition: BoldChatAccountSettings.h:12
BOOL skipPreChat
If there is pre chat set for the chat it can be skipped by this parameter, with sending the answers i...
Definition: BoldChatAccountSettings.h:30
BCAccount * account
The Boldchat account to operate with.
Definition: BoldChatAccountSettings.h:18
A set of BoldChat account settings identified by an access key.
Definition: BCAccount.h:21
NSString * secureParams
An encrypted list of parameters that validate the caller of the API.
Definition: BoldChatAccountSettings.h:42
NSString * visitorId
The visitor ID.
Definition: BoldChatAccountSettings.h:24