ExampleScenarioOperation constructor

const ExampleScenarioOperation({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. Coding? type,
  5. String? title,
  6. @JsonKey(name: '_title') Element? titleElement,
  7. String? initiator,
  8. @JsonKey(name: '_initiator') Element? initiatorElement,
  9. String? receiver,
  10. @JsonKey(name: '_receiver') Element? receiverElement,
  11. FhirMarkdown? description,
  12. @JsonKey(name: '_description') Element? descriptionElement,
  13. FhirBoolean? initiatorActive,
  14. @JsonKey(name: '_initiatorActive') Element? initiatorActiveElement,
  15. FhirBoolean? receiverActive,
  16. @JsonKey(name: '_receiverActive') Element? receiverActiveElement,
  17. ExampleScenarioContainedInstance? request,
  18. 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_ ("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).

type The standardized type of action (FHIR or otherwise).

title A short descriptive label the step to be used in tables or diagrams.

titleElement ("_title") Extensions for title

initiator The system that invokes the action/transmits the data.

initiatorElement ("_initiator") Extensions for initiator

receiver The system on which the action is invoked/receives the data.

receiverElement ("_receiver") Extensions for receiver

description An explanation of what the operation represents and what it does.

descriptionElement ("_description") Extensions for description

initiatorActive If false, the initiator is deactivated right after the operation.

initiatorActiveElement ("_initiatorActive") Extensions for initiatorActive

receiverActive If false, the receiver is deactivated right after the operation.

receiverActiveElement ("_receiverActive") Extensions for receiverActive

request A reference to the instance that is transmitted from requester to receiver as part of the invocation of the operation.

response A reference to the instance that is transmitted from receiver to requester as part of the operation's synchronous response (if any).

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') 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,

  /// [type] The standardized type of action (FHIR or otherwise).
  Coding? type,

  /// [title] A short descriptive label the step to be used in tables or
  ///  diagrams.
  String? title,

  /// [titleElement] ("_title") Extensions for title
  @JsonKey(name: '_title') Element? titleElement,

  /// [initiator] The system that invokes the action/transmits the data.
  String? initiator,

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

  /// [receiver] The system on which the action is invoked/receives the data.
  String? receiver,

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

  /// [description] An explanation of what the operation represents and what
  ///  it does.
  FhirMarkdown? description,

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

  /// [initiatorActive] If false, the initiator is deactivated right after
  ///  the operation.
  FhirBoolean? initiatorActive,

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

  /// [receiverActive] If false, the receiver is deactivated right after the
  ///  operation.
  FhirBoolean? receiverActive,

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

  /// [request] A reference to the instance that is transmitted from
  ///  requester to receiver as part of the invocation of the operation.
  ExampleScenarioContainedInstance? request,

  /// [response] A reference to the instance that is transmitted from
  ///  receiver to requester as part of the operation's synchronous response
  ///  (if any).
  ExampleScenarioContainedInstance? response,
}) = _ExampleScenarioOperation;