Difference between revisions of "CatiStatistic class"
Nguyenduyan (talk | contribs) |
Nguyenduyan (talk | contribs) |
||
Line 26: | Line 26: | ||
for(number i = 0; i<result.Count; i++ ) | for(number i = 0; i<result.Count; i++ ) | ||
{ | { | ||
− | CatiStatistic | + | CatiStatistic catiStat = result[i]; |
− | print( | + | print(catiStat.InterviewerResourceId);//15003004, 15620372 |
− | print( | + | print(catiStat.TotalTime);//95280, 16740 |
− | print( | + | print(catiStat.RealTime);//89294, 16372 |
− | print( | + | print(catiStat.AverageSuccesTime);//1725, 2962 |
− | print( | + | print(catiStat.TotalCallAttempts); //643, 116 |
} | } | ||
</source> | </source> |
Revision as of 10:32, 11 May 2018
CatiStatistic
Represents a SampleRule.
Methods
- string ToString() - The string representation of the object.
Properties
- number AverageSuccesTime { get; set; } - Get/Set AverageSuccesTime in second
- int InterviewerResourceId { get; set; } - Get/Set InterviewerResourceId
- string ObjectTypeName { get; } - The name of the type of object.
- number RealTime { get; set; } - Get/Set RealTime in second
- int TotalCallAttempts { get; set; } - Get/Set TotalCallAttempts
- number TotalTime { get; set; } - Get/Set TotalTime in second
- TypeInformation TypeInformation { get; } - Get information about this class.
Examples
CatiStatistic is returned when calling CatiStat_get
Array interviewers = {15620372, 15003004};
number qnaireRid = 15629214;
Array startDate = {2018, 2, 7, 0, 0, 0, 0};
Array endDate = {2018, 5, 10, 0, 0, 0, 0};
Array result = CatiStat_get(interviewers, qnaireRid, startDate, endDate);
print(result);//{CatiStatistic,CatiStatistic}
for(number i = 0; i<result.Count; i++ )
{
CatiStatistic catiStat = result[i];
print(catiStat.InterviewerResourceId);//15003004, 15620372
print(catiStat.TotalTime);//95280, 16740
print(catiStat.RealTime);//89294, 16372
print(catiStat.AverageSuccesTime);//1725, 2962
print(catiStat.TotalCallAttempts); //643, 116
}