/// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='periodFrom'>
 /// Includes reports for periods with a transmission period start date no
 /// earlier than {PeriodFrom}
 /// </param>
 /// <param name='periodTo'>
 /// Includes reports for periods with a transmission period start date no later
 /// than {PeriodFromTo}
 /// </param>
 /// <param name='schoolCode'>
 /// The school code for which to get data.
 /// </param>
 /// <param name='xSelectedSchoolCode'>
 /// Selected school code, used when multiple impersonation permissions are
 /// available on the token
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IList <ActivityGroup2Dto> > GetAsync(this IStudentActivityReportsV2External operations, System.DateTime periodFrom, System.DateTime periodTo, string schoolCode, string xSelectedSchoolCode = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(periodFrom, periodTo, schoolCode, xSelectedSchoolCode, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='periodFrom'>
 /// Includes reports for periods with a transmission period start date no
 /// earlier than {PeriodFrom}
 /// </param>
 /// <param name='periodTo'>
 /// Includes reports for periods with a transmission period start date no later
 /// than {PeriodFromTo}
 /// </param>
 /// <param name='schoolCode'>
 /// The school code for which to get data.
 /// </param>
 /// <param name='xSelectedSchoolCode'>
 /// Selected school code, used when multiple impersonation permissions are
 /// available on the token
 /// </param>
 public static IList <ActivityGroup2Dto> Get(this IStudentActivityReportsV2External operations, System.DateTime periodFrom, System.DateTime periodTo, string schoolCode, string xSelectedSchoolCode = default(string))
 {
     return(operations.GetAsync(periodFrom, periodTo, schoolCode, xSelectedSchoolCode).GetAwaiter().GetResult());
 }