getSingleFromAttendanceType static method

Future<PcoCheckInsEvent?> getSingleFromAttendanceType(
  1. String attendanceTypeId,
  2. String id, {
  3. PcoCheckInsEventQuery? query,
  4. bool includeAllRelated = false,
  5. bool includeAttendanceTypes = false,
  6. bool includeEventPeriods = false,
})

Will get a single PcoCheckInsEvent object using a path like this: /check-ins/v2/attendance_types/$attendanceTypeId/event/[id]

Additional options may be specified by using the query argument, but some query options are also available as boolean flags in this function call too.

Implementation

static Future<PcoCheckInsEvent?> getSingleFromAttendanceType(
  String attendanceTypeId,
  String id, {
  PcoCheckInsEventQuery? query,
  bool includeAllRelated = false,
  bool includeAttendanceTypes = false,
  bool includeEventPeriods = false,
}) async {
  query ??= PcoCheckInsEventQuery();
  if (includeAllRelated) query.include.addAll(PcoCheckInsEvent.canInclude);
  if (includeAttendanceTypes) query.include.add('attendance_types');
  if (includeEventPeriods) query.include.add('event_periods');
  var url = '/check-ins/v2/attendance_types/$attendanceTypeId/event/$id';
  var retval = await PcoCollection.fromApiCall<PcoCheckInsEvent>(url,
      query: query, apiVersion: kApiVersion);
  return retval.items.isEmpty ? null : retval.items.first;
}