PcoServicesSplitTeamRehearsalAssignment constructor

PcoServicesSplitTeamRehearsalAssignment({
  1. required String serviceTypeId,
  2. required String planTimeId,
  3. String? id,
  4. bool? isScheduleSpecialServiceTimes,
  5. Map<String, List<PcoResource>>? withRelationships,
  6. List<PcoResource>? withIncluded,
})

Create a new PcoServicesSplitTeamRehearsalAssignment object using this endpoint: https://api.planningcenteronline.com/services/v2/service_types/$serviceTypeId/plan_times/$planTimeId/split_team_rehearsal_assignments

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: isScheduleSpecialServiceTimes
  • FIELDS USED WHEN UPDATING: isScheduleSpecialServiceTimes

Implementation

factory PcoServicesSplitTeamRehearsalAssignment(
    {required String serviceTypeId,
    required String planTimeId,
    String? id,
    bool? isScheduleSpecialServiceTimes,
    Map<String, List<PcoResource>>? withRelationships,
    List<PcoResource>? withIncluded}) {
  var obj = PcoServicesSplitTeamRehearsalAssignment.empty();
  obj._id = id;
  obj._apiPathOverride =
      'https://api.planningcenteronline.com/services/v2/service_types/$serviceTypeId/plan_times/$planTimeId/split_team_rehearsal_assignments';
  if (isScheduleSpecialServiceTimes != null)
    obj._attributes['schedule_special_service_times'] =
        isScheduleSpecialServiceTimes;

  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;
}