getAllFromServiceType static method

Will get a PcoCollection containing ALL PcoServicesTimePreferenceOption objects (expecting many) using a path like this: /services/v2/service_types/$serviceTypeId/time_preference_options

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<PcoServicesTimePreferenceOption>>
    getAllFromServiceType(
  String serviceTypeId, {
  String? id,
  PcoServicesTimePreferenceOptionQuery? query,
}) async {
  query ??= PcoServicesTimePreferenceOptionQuery();
  query.getAll = true;

  var url =
      '/services/v2/service_types/$serviceTypeId/time_preference_options';
  if (id != null) url += '/$id';
  return PcoCollection.fromApiCall<PcoServicesTimePreferenceOption>(url,
      query: query, apiVersion: kApiVersion);
}