PcoCalendarEventTime constructor

PcoCalendarEventTime({
  1. String? id,
  2. DateTime? endsAt,
  3. DateTime? startsAt,
  4. DateTime? name,
  5. bool? isVisibleOnKiosks,
  6. bool? isVisibleOnWidgetAndIcal,
  7. Map<String, List<PcoResource>>? withRelationships,
  8. List<PcoResource>? withIncluded,
})

Create a new PcoCalendarEventTime object. This object cannot be created with the API

NOTES:

  • Creating an instance of a class this way does not save it on the server.
  • This object cannot be saved directly 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: none
  • FIELDS USED WHEN UPDATING: none

Implementation

factory PcoCalendarEventTime(
    {String? id,
    DateTime? endsAt,
    DateTime? startsAt,
    DateTime? name,
    bool? isVisibleOnKiosks,
    bool? isVisibleOnWidgetAndIcal,
    Map<String, List<PcoResource>>? withRelationships,
    List<PcoResource>? withIncluded}) {
  var obj = PcoCalendarEventTime.empty();
  obj._id = id;
  if (endsAt != null) obj._attributes['ends_at'] = endsAt.toIso8601String();
  if (startsAt != null)
    obj._attributes['starts_at'] = startsAt.toIso8601String();
  if (name != null) obj._attributes['name'] = name.toIso8601String();
  if (isVisibleOnKiosks != null)
    obj._attributes['visible_on_kiosks'] = isVisibleOnKiosks;
  if (isVisibleOnWidgetAndIcal != null)
    obj._attributes['visible_on_widget_and_ical'] = isVisibleOnWidgetAndIcal;

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