UNPKG
@iot9x.com/nestjs-ucpaas-voice
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
nestjs 云之讯平台语音集成插件
@iot9x.com/nestjs-ucpaas-voice
/
dist
/
interfaces
/
response
/
ucpaas
/
voiceNotify.ucpaas.interface.d.ts
14 lines
(13 loc)
•
440 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** 云之讯语音平台语音通知接口返回基础内容 */
export interface UcpaasVoiceNotifyResponse { resp: { voiceNotify: {
/** 用户唯一通话标识长度不能超过32 */
callId: string;
/** 语音通知发起时间,格式yyyyMMddHHmmss */
createDate: string; };
/** 请求返回的状态码 00000代表成功 */
respCode: string; }; }