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
/
voice
/
voice-notify.response.interface.d.ts
9 lines
(8 loc)
•
344 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
BaseResponse
}
from
'../base.response.interface'
;
export
interface
VoiceNotifyResponseData
{
/** 用户唯一通话标识长度不能超过32 */
callId
:
string
;
/** 语音通知发起时间,格式yyyyMMddHHmmss */
createDate
:
string
; }
export
declare
type
VoiceNotifyResponse
=
BaseResponse
<
VoiceNotifyResponseData
>;