PcoPeopleNoteCategoryShare constructor

PcoPeopleNoteCategoryShare(
  1. {required String noteCategoryId,
  2. String? id,
  3. String? group,
  4. String? permission,
  5. String? personId,
  6. Map<String, List<PcoResource>>? withRelationships,
  7. List<PcoResource>? withIncluded}
)

Create a new PcoPeopleNoteCategoryShare object using this endpoint: https://api.planningcenteronline.com/people/v2/note_categories/$noteCategoryId/shares

NOTES:

  • Creating an instance of a class this way does not save it on the server.
  • Call save() on the object to save it to the server.
  • Only set the id field if you know what you are doing. Save operations will overwrite data when the id is set.
  • Dummy data can be supplied for a required parameter, but if so, .save() should not be called on the object
  • FIELDS USED WHEN CREATING: group, permission, personId
  • FIELDS USED WHEN UPDATING: group, permission, personId

Implementation

factory PcoPeopleNoteCategoryShare(
    {required String noteCategoryId,
    String? id,
    String? group,
    String? permission,
    String? personId,
    Map<String, List<PcoResource>>? withRelationships,
    List<PcoResource>? withIncluded}) {
  var obj = PcoPeopleNoteCategoryShare.empty();
  obj._id = id;
  obj._apiPathOverride =
      'https://api.planningcenteronline.com/people/v2/note_categories/$noteCategoryId/shares';
  if (group != null) obj._attributes['group'] = group;
  if (permission != null) obj._attributes['permission'] = permission;
  if (personId != null) obj._attributes['person_id'] = personId;

  if (withRelationships != null) {
    for (var r in withRelationships.entries) {
      obj._relationships[r.key] = r.value;
    }
    obj._hasManualRelationships = true;
  }

  if (withIncluded != null) {
    obj._included.addAll(withIncluded);
    obj._hasManualIncluded = true;
  }

  return obj;
}