예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="QueueConversationVideoEventTopicConversationRoutingData" /> class.
 /// </summary>
 /// <param name="Queue">Queue.</param>
 /// <param name="Language">A UriReference for a resource.</param>
 /// <param name="Priority">The priority of the conversation to use for routing decisions.</param>
 /// <param name="Skills">The skills to use for routing decisions.</param>
 /// <param name="ScoredAgents">A collection of agents and their assigned scores for this conversation (0 - 100, higher being better), for use in routing to preferred agents.</param>
 public QueueConversationVideoEventTopicConversationRoutingData(QueueConversationVideoEventTopicUriReference Queue = null, QueueConversationVideoEventTopicUriReference Language = null, int?Priority = null, List <QueueConversationVideoEventTopicUriReference> Skills = null, List <QueueConversationVideoEventTopicScoredAgent> ScoredAgents = null)
 {
     this.Queue        = Queue;
     this.Language     = Language;
     this.Priority     = Priority;
     this.Skills       = Skills;
     this.ScoredAgents = ScoredAgents;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="QueueConversationVideoEventTopicScoredAgent" /> class.
 /// </summary>
 /// <param name="Agent">Agent.</param>
 /// <param name="Score">Score.</param>
 public QueueConversationVideoEventTopicScoredAgent(QueueConversationVideoEventTopicUriReference Agent = null, int?Score = null)
 {
     this.Agent = Agent;
     this.Score = Score;
 }