PcoPeopleServiceTime constructor

PcoPeopleServiceTime({
  1. required String campusId,
  2. String? id,
  3. int? startTime,
  4. String? day,
  5. String? description,
  6. Map<String, List<PcoResource>>? withRelationships,
  7. List<PcoResource>? withIncluded,
})

Create a new PcoPeopleServiceTime object using this endpoint: https://api.planningcenteronline.com/people/v2/campuses/$campusId/service_times

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: startTime, day, description
  • FIELDS USED WHEN UPDATING: startTime, day, description

Implementation

factory PcoPeopleServiceTime(
    {required String campusId,
    String? id,
    int? startTime,
    String? day,
    String? description,
    Map<String, List<PcoResource>>? withRelationships,
    List<PcoResource>? withIncluded}) {
  var obj = PcoPeopleServiceTime.empty();
  obj._id = id;
  obj._apiPathOverride =
      'https://api.planningcenteronline.com/people/v2/campuses/$campusId/service_times';
  if (startTime != null) obj._attributes['start_time'] = startTime;
  if (day != null) obj._attributes['day'] = day;
  if (description != null) obj._attributes['description'] = description;

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