hank
2019-05-21 d9782e57cfb45d579792968c26f72872963cd1b7
commit | author | age
4bd26c 1 //
H 2 //  WAICsc.h
3 //  WASdkIntf
4 //
5 //  Created by hank on 2018/6/7.
6 //  Copyright © 2018年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface WAICsc : NSObject
12
13 #pragma mark - 启动机器人客服界面
14 - (void)showElva:(nonnull NSString *)showConversationFlag config:(nullable NSMutableDictionary *)config;
15
16 #pragma mark - 启动运营界面
17 - (void)showElvaOP:(nonnull NSString *)showConversationFlag config:(nullable NSMutableDictionary *)config;
18
19 #pragma mark 展示全部FAQ菜单
20 - (void)showFAQs:(nullable NSMutableDictionary *)config;
21
22 #pragma mark 展示FAQ分类
23 - (void)showFAQSection:(nonnull NSString *)sectionPublishId config:(nullable NSMutableDictionary *)config;
24
25 #pragma mark 展示单条FAQ
26 - (void)showSingleFAQ:(nonnull NSString *)faqId config:(nullable NSMutableDictionary *)config;
27
28 #pragma mark - 进入人工客服界面
29 - (void)showConversation:(nullable NSMutableDictionary *)config;
30
31 #pragma mark -- 设置游戏名称信息
32 - (void)setName:(nonnull NSString *)name;
33
34 #pragma mark -- 设置SDK语言
35 - (void)setLanguage:(nonnull NSString *)language;
36
37 @end