getAllFromCheckIn static method

Future<PcoCollection<PcoCheckInsPerson>> getAllFromCheckIn(
  1. String checkInId, {
  2. String? id,
  3. PcoCheckInsPersonQuery? query,
  4. bool includeOrganization = false,
})

Will get a PcoCollection containing ALL PcoCheckInsPerson objects (expecting many) using a path like this: /check-ins/v2/check_ins/$checkInId/person

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.

This function forces the query.getAll to be true.

Implementation

static Future<PcoCollection<PcoCheckInsPerson>> getAllFromCheckIn(
  String checkInId, {
  String? id,
  PcoCheckInsPersonQuery? query,
  bool includeOrganization = false,
}) async {
  query ??= PcoCheckInsPersonQuery();
  query.getAll = true;

  if (includeOrganization) query.include.add('organization');
  var url = '/check-ins/v2/check_ins/$checkInId/person';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoCheckInsPerson>(url,
      query: query, apiVersion: kApiVersion);
}