CatiStatistic class
Revision as of 03:29, 14 February 2019 by Administrator (talk | contribs)
CatiStatistic
Represents a CatiStatistic.
Methods
- string ToString() - The string representation of the object.
Properties
- number AverageSuccesTime { get; } - Get AverageSuccesTime in second
- DateTime FirstCall { get; } - Get when first call was started inside the time period
- int InterviewerResourceId { get; } - Get InterviewerResourceId
- DateTime LastCall { get; } - Get when last call was finished inside the time period
- int ModifiedRealTime { get; } - Get RealTime that respects max duration of the outcome
- int NumberOfContacts { get; } - Get number of contacts called
- int NumberOfInterviewSucceeded { get; } - Get number of success by qas status
- int NumberOfSuccess { get; } - Get number of success by outcome
- string ObjectTypeName { get; } - The name of the type of object.
- int RealTime { get; } - Get RealTime in second
- number SuccessRate { get; } - Get successrate in regards to ea records
- int TotalCallAttempts { get; } - Get TotalCallAttempts
- number TotalTime { get; } - Get 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
}