ImagingSelectionImageRegion2D constructor

const ImagingSelectionImageRegion2D({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirCode? regionType,
  5. @JsonKey(name: '_regionType') Element? regionTypeElement,
  6. List<FhirDecimal>? coordinate,
  7. @JsonKey(name: '_coordinate') List<Element>? coordinateElement,
})

ImagingSelectionImageRegion2D A selection of DICOM SOP instances and/or frames within a single Study and Series. This might include additional specifics such as an image region, an Observation UID or a Segmentation Number, allowing linkage to an Observation Resource or transferring this information along with the ImagingStudy Resource.

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

extension_ ("extension") May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

modifierExtension May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).

regionType Specifies the type of image region.

regionTypeElement ("_regionType") Extensions for regionType

coordinate The coordinates describing the image region. Encoded as a set of (column, row) pairs that denote positions in the selected image / frames specified with sub-pixel resolution. The origin at the TLHC of the TLHC pixel is 0.0\0.0, the BRHC of the TLHC pixel is 1.0\1.0, and the BRHC of the BRHC pixel is the number of columns\rows in the image / frames. The values must be within the range 0\0 to the number of columns\rows in the image / frames.

coordinateElement ("_coordinate") Extensions for coordinate

Implementation

const factory ImagingSelectionImageRegion2D({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') String? fhirId,

  /// [extension_] ("extension") May be used to represent additional
  ///  information that is not part of the basic definition of the element.
  ///  To make the use of extensions safe and managable, there is a strict
  ///  set of governance applied to the definition and use of extensions.
  ///  Though any implementer can define an extension, there is a set of
  ///  requirements that SHALL be met as part of the definition of the
  ///  extension.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] May be used to represent additional information
  ///  that is not part of the basic definition of the element and that
  ///  modifies the understanding of the element in which it is contained
  ///  and/or the understanding of the containing element's descendants.
  ///  Usually modifier elements provide negation or qualification. To make
  ///  the use of extensions safe and managable, there is a strict set of
  ///  governance applied to the definition and use of extensions. Though any
  ///  implementer can define an extension, there is a set of requirements
  ///  that SHALL be met as part of the definition of the extension.
  ///  Applications processing a resource are required to check for modifier
  ///  extensions.Modifier extensions SHALL NOT change the meaning of any
  ///  elements on Resource or DomainResource (including cannot change the
  ///  meaning of modifierExtension itself).
  List<FhirExtension>? modifierExtension,

  /// [regionType] Specifies the type of image region.
  FhirCode? regionType,

  /// [regionTypeElement] ("_regionType") Extensions for regionType
  @JsonKey(name: '_regionType') Element? regionTypeElement,

  /// [coordinate] The coordinates describing the image region. Encoded as a
  ///  set of (column, row) pairs that denote positions in the selected image
  ///  / frames specified with sub-pixel resolution. The origin at the TLHC
  ///  of the TLHC pixel is 0.0\0.0, the BRHC of the TLHC pixel is 1.0\1.0,
  ///  and the BRHC of the BRHC pixel is the number of columns\rows in the
  ///  image / frames. The values must be within the range 0\0 to the number
  ///  of columns\rows in the image / frames.
  List<FhirDecimal>? coordinate,

  /// [coordinateElement] ("_coordinate") Extensions for coordinate
  @JsonKey(name: '_coordinate') List<Element>? coordinateElement,
}) = _ImagingSelectionImageRegion2D;