新增机器人设置的API
This commit is contained in:
parent
6198489dd4
commit
f872029c9d
@ -451,5 +451,58 @@ public interface PDLiveApi {
|
||||
@Query("anchor_id") String anchor_id,
|
||||
@Query("prank_index") String prank_index
|
||||
);
|
||||
/**
|
||||
* 设置机器人开关
|
||||
*/
|
||||
@GET("/api/public/?service=Live.setAnchorAiState")
|
||||
Observable<ResponseModel<List<BaseModel>>> setAnchorAiState(
|
||||
@Query("ai_state") String ai_state
|
||||
);
|
||||
/**
|
||||
* 获取机器人信息
|
||||
*/
|
||||
@GET("/api/public/?service=Live.getAnchorAiState")
|
||||
Observable<ResponseModel<List<BaseModel>>> getAnchorAiState(
|
||||
);
|
||||
/**
|
||||
* 修改机器人信息
|
||||
*/
|
||||
@GET("/api/public/?service=Live.setAnchorAiState")
|
||||
Observable<ResponseModel<List<BaseModel>>> getAnchorAiState(
|
||||
@Query("name") String name,
|
||||
@Query("value") String value
|
||||
);
|
||||
/**
|
||||
* 获取机器人自定义话术
|
||||
* @param type 1(自定义打招呼) 3(自定义求关注)
|
||||
*/
|
||||
@GET("/api/public/?service=Live.getAiAutomaticSpeech")
|
||||
Observable<ResponseModel<List<BaseModel>>> getAiAutomaticSpeech(
|
||||
@Query("type") String type
|
||||
);
|
||||
/**
|
||||
* 机器人添加话术
|
||||
*/
|
||||
@GET("/api/public/?service=Live.addAiAutomaticSpeech")
|
||||
Observable<ResponseModel<List<BaseModel>>> addAiAutomaticSpeech(
|
||||
@Query("type") String type,
|
||||
@Query("content") String content
|
||||
);
|
||||
/**
|
||||
* 机器人删除话术
|
||||
*/
|
||||
@GET("/api/public/?service=Live.delAiAutomaticSpeech ")
|
||||
Observable<ResponseModel<List<BaseModel>>> delAiAutomaticSpeech (
|
||||
@Query("type") String type,
|
||||
@Query("id") String id
|
||||
);
|
||||
/**
|
||||
* 机器人修改话术
|
||||
*/
|
||||
@GET("/api/public/?service=Live.updateAiAutomaticSpeech ")
|
||||
Observable<ResponseModel<List<BaseModel>>> updateAiAutomaticSpeech (
|
||||
@Query("type") String type,
|
||||
@Query("id") String id
|
||||
);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user