31 lines
893 B
C#
31 lines
893 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CRM.Core.DTO.Api
|
|
{
|
|
|
|
public class Voice_CallBackResult
|
|
{
|
|
public SentencesInfo Result { get; set; }
|
|
public string TaskId { get; set; }
|
|
public int StatusCode { get; set; }
|
|
public string StatusText { get; set; }
|
|
public long RequestTime { get; set; }
|
|
public long SolveTime { get; set; }
|
|
public int BizDuration { get; set; }
|
|
}
|
|
public class SentencesInfo
|
|
{
|
|
public List<SentencesList> Sentences { get; set; }
|
|
}
|
|
public class SentencesList
|
|
{
|
|
public int EndTime { get; set; }
|
|
public int SilenceDuration { get; set; }
|
|
public int BeginTime { get; set; }
|
|
public string Text { get; set; }
|
|
public int ChannelId { get; set; }
|
|
public int SpeechRate { get; set; }
|
|
public float EmotionValue { get; set; }
|
|
}
|
|
}
|