getSharesFromNoteCategory static method

Future<PcoCollection<PcoPeopleNoteCategoryShare>> getSharesFromNoteCategory(
  1. String noteCategoryId, {
  2. PcoPeopleNoteCategoryShareQuery? query,
  3. bool getAll = false,
  4. bool includePerson = false,
})

Will get a PcoCollection of PcoPeopleNoteCategoryShare objects (expecting one) using a path like this: /people/v2/note_categories/$noteCategoryId/shares

Getting a PcoCollection is useful even when retrieving a single object because it contains error data and helper functions.

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<PcoCollection<PcoPeopleNoteCategoryShare>>
    getSharesFromNoteCategory(
  String noteCategoryId, {
  PcoPeopleNoteCategoryShareQuery? query,
  bool getAll = false,
  bool includePerson = false,
}) async {
  query ??= PcoPeopleNoteCategoryShareQuery();
  if (getAll) query.getAll = true;

  if (includePerson) query.include.add('person');
  var url = '/people/v2/note_categories/$noteCategoryId/shares';

  return PcoCollection.fromApiCall<PcoPeopleNoteCategoryShare>(url,
      query: query, apiVersion: kApiVersion);
}