getAllFromLabelAndLocationLabel static method

Future<PcoCollection<PcoCheckInsLabel>> getAllFromLabelAndLocationLabel(
  1. String labelId,
  2. String locationLabelId, {
  3. String? id,
  4. PcoCheckInsLabelQuery? query,
})

Will get a PcoCollection containing ALL PcoCheckInsLabel objects (expecting many) using a path like this: /check-ins/v2/labels/$labelId/location_labels/$locationLabelId/label

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<PcoCheckInsLabel>>
    getAllFromLabelAndLocationLabel(
  String labelId,
  String locationLabelId, {
  String? id,
  PcoCheckInsLabelQuery? query,
}) async {
  query ??= PcoCheckInsLabelQuery();
  query.getAll = true;

  var url =
      '/check-ins/v2/labels/$labelId/location_labels/$locationLabelId/label';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoCheckInsLabel>(url,
      query: query, apiVersion: kApiVersion);
}