ExampleScenarioOperation constructor

const ExampleScenarioOperation({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? number,
  5. @JsonKey(name: '_number') Element? numberElement,
  6. String? type,
  7. @JsonKey(name: '_type') Element? typeElement,
  8. String? name,
  9. @JsonKey(name: '_name') Element? nameElement,
  10. String? initiator,
  11. @JsonKey(name: '_initiator') Element? initiatorElement,
  12. String? receiver,
  13. @JsonKey(name: '_receiver') Element? receiverElement,
  14. FhirMarkdown? description,
  15. @JsonKey(name: '_description') Element? descriptionElement,
  16. FhirBoolean? initiatorActive,
  17. @JsonKey(name: '_initiatorActive') Element? initiatorActiveElement,
  18. FhirBoolean? receiverActive,
  19. @JsonKey(name: '_receiverActive') Element? receiverActiveElement,
  20. ExampleScenarioContainedInstance? request,
  21. ExampleScenarioContainedInstance? response,
})

ExampleScenarioOperation Example of workflow instance.

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

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 manageable, 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 manageable, 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).

number The sequential number of the interaction, e.g. 1.2.5.

numberElement Extensions for number

type The type of operation - CRUD.

typeElement Extensions for type

name The human-friendly name of the interaction.

nameElement Extensions for name

initiator Who starts the transaction.

initiatorElement Extensions for initiator

receiver Who receives the transaction.

receiverElement Extensions for receiver

description A comment to be inserted in the diagram.

descriptionElement Extensions for description

initiatorActive Whether the initiator is deactivated right after the transaction.

initiatorActiveElement Extensions for initiatorActive

receiverActive Whether the receiver is deactivated right after the transaction.

receiverActiveElement Extensions for receiverActive

request Each resource instance used by the initiator.

response Each resource instance used by the responder.

Implementation

const factory ExampleScenarioOperation({
  /// [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') FhirId? fhirId,

  /// [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 manageable, 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 manageable, 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,

  /// [number] The sequential number of the interaction, e.g. 1.2.5.
  String? number,

  /// [numberElement] Extensions for number
  @JsonKey(name: '_number') Element? numberElement,

  /// [type] The type of operation - CRUD.
  String? type,

  /// [typeElement] Extensions for type
  @JsonKey(name: '_type') Element? typeElement,

  /// [name] The human-friendly name of the interaction.
  String? name,

  /// [nameElement] Extensions for name
  @JsonKey(name: '_name') Element? nameElement,

  /// [initiator] Who starts the transaction.
  String? initiator,

  /// [initiatorElement] Extensions for initiator
  @JsonKey(name: '_initiator') Element? initiatorElement,

  /// [receiver] Who receives the transaction.
  String? receiver,

  /// [receiverElement] Extensions for receiver
  @JsonKey(name: '_receiver') Element? receiverElement,

  /// [description] A comment to be inserted in the diagram.
  FhirMarkdown? description,

  /// [descriptionElement] Extensions for description
  @JsonKey(name: '_description') Element? descriptionElement,

  /// [initiatorActive] Whether the initiator is deactivated right after the
  ///  transaction.
  FhirBoolean? initiatorActive,

  /// [initiatorActiveElement] Extensions for initiatorActive
  @JsonKey(name: '_initiatorActive') Element? initiatorActiveElement,

  /// [receiverActive] Whether the receiver is deactivated right after the
  ///  transaction.
  FhirBoolean? receiverActive,

  /// [receiverActiveElement] Extensions for receiverActive
  @JsonKey(name: '_receiverActive') Element? receiverActiveElement,

  /// [request] Each resource instance used by the initiator.
  ExampleScenarioContainedInstance? request,

  /// [response] Each resource instance used by the responder.
  ExampleScenarioContainedInstance? response,
}) = _ExampleScenarioOperation;