Bold360 and BoldChat Developer Center

BCChangeLanguageDelegate.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 
7 @protocol BCChatSession;
8 
13 @protocol BCChangeLanguageDelegate <NSObject>
14 
22 - (void)bcChatSession:(id<BCChatSession>)chatSession didChangeToLanguage:(NSString *)language withBranding:(NSDictionary *)branding;
23 
30 - (void)bcChatSession:(id<BCChatSession>)chatSession didFailToChangeLanguageWithError:(NSError *)error;
31 
32 
33 @end
The main class protocol that is used to interact with an active chat session.
Definition: BCChatSession.h:29
The callbacks for the result of BCChatSession::changeLanguage:delegate: .
Definition: BCChangeLanguageDelegate.h:13