PcoCheckInsStation constructor

PcoCheckInsStation({
  1. String? id,
  2. bool? isOnline,
  3. int? mode,
  4. String? name,
  5. int? timeoutSeconds,
  6. String? inputType,
  7. String? inputTypeOptions,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
  10. DateTime? nextShowsAt,
  11. int? checkInCount,
  12. Map<String, List<PcoResource>>? withRelationships,
  13. List<PcoResource>? withIncluded,
})

Create a new PcoCheckInsStation 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 PcoCheckInsStation(
    {String? id,
    bool? isOnline,
    int? mode,
    String? name,
    int? timeoutSeconds,
    String? inputType,
    String? inputTypeOptions,
    DateTime? createdAt,
    DateTime? updatedAt,
    DateTime? nextShowsAt,
    int? checkInCount,
    Map<String, List<PcoResource>>? withRelationships,
    List<PcoResource>? withIncluded}) {
  var obj = PcoCheckInsStation.empty();
  obj._id = id;
  if (isOnline != null) obj._attributes['online'] = isOnline;
  if (mode != null) obj._attributes['mode'] = mode;
  if (name != null) obj._attributes['name'] = name;
  if (timeoutSeconds != null)
    obj._attributes['timeout_seconds'] = timeoutSeconds;
  if (inputType != null) obj._attributes['input_type'] = inputType;
  if (inputTypeOptions != null)
    obj._attributes['input_type_options'] = inputTypeOptions;
  if (createdAt != null)
    obj._attributes['created_at'] = createdAt.toIso8601String();
  if (updatedAt != null)
    obj._attributes['updated_at'] = updatedAt.toIso8601String();
  if (nextShowsAt != null)
    obj._attributes['next_shows_at'] = nextShowsAt.toIso8601String();
  if (checkInCount != null) obj._attributes['check_in_count'] = checkInCount;

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