BundleSearchUsCore constructor

BundleSearchUsCore({
  1. String? id,
  2. Code? mode,
  3. Decimal? score,
})

BundleSearchUsCore A container for a collection of resources.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

mode Why this entry is in the result set - whether it's included as a match or because of an _include requirement, or to convey information or warning information about the search process.

score When searching, the server's search ranking score for the entry.

Implementation

factory BundleSearchUsCore({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  String? id,

  /// [mode] Why this entry is in the result set - whether it's included as a
  /// match or because of an _include requirement, or to convey information or
  ///  warning information about the search process.
  Code? mode,

  /// [score] When searching, the server's search ranking score for the entry.
  Decimal? score,
}) =>
    BundleSearchUsCore._(BundleSearch(id: id, mode: mode, score: score));