getSingleFromCheckInAndLocation static method

Future<PcoCheckInsLocationEventTime?> getSingleFromCheckInAndLocation(
  1. String checkInId,
  2. String locationId,
  3. String id,
  4. {PcoCheckInsLocationEventTimeQuery? query,
  5. bool includeAllRelated = false,
  6. bool includeEventTime = false,
  7. bool includeLocation = false}
)

Will get a single PcoCheckInsLocationEventTime object using a path like this: /check-ins/v2/check_ins/$checkInId/locations/$locationId/location_event_times/[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<PcoCheckInsLocationEventTime?> getSingleFromCheckInAndLocation(
  String checkInId,
  String locationId,
  String id, {
  PcoCheckInsLocationEventTimeQuery? query,
  bool includeAllRelated = false,
  bool includeEventTime = false,
  bool includeLocation = false,
}) async {
  query ??= PcoCheckInsLocationEventTimeQuery();
  if (includeAllRelated)
    query.include.addAll(PcoCheckInsLocationEventTime.canInclude);
  if (includeEventTime) query.include.add('event_time');
  if (includeLocation) query.include.add('location');
  var url =
      '/check-ins/v2/check_ins/$checkInId/locations/$locationId/location_event_times/$id';
  var retval = await PcoCollection.fromApiCall<PcoCheckInsLocationEventTime>(
      url,
      query: query,
      apiVersion: kApiVersion);
  return retval.items.isEmpty ? null : retval.items.first;
}