You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suspect client.attendanceCodes.all() is throwing an object reference error because the response does not come back as paged results.
EndPointsTests.cs - does not include a test case for attendance codes. Otherwise, it would have been picked up.
I suspect the issues is that code expects to get nextPage property and in this case it doesn't as per the code snipet from DotNetClient/TestWondeClient/Program.cs
iterate(students);
if (students.nextPage())
iterate(students);
if (students.previousPage())
iterate(students);
The text was updated successfully, but these errors were encountered:
I suspect
client.attendanceCodes.all()
is throwing an object reference error because the response does not come back as paged results.EndPointsTests.cs
- does not include a test case for attendance codes. Otherwise, it would have been picked up.I suspect the issues is that code expects to get nextPage property and in this case it doesn't as per the code snipet from
DotNetClient/TestWondeClient/Program.cs
The text was updated successfully, but these errors were encountered: