Skip to content

Commit

Permalink
Merge pull request #248 from srdc/reorder-expression-fields
Browse files Browse the repository at this point in the history
Reorder FhirMapping constructor fiel…
  • Loading branch information
YemreGurses authored Nov 18, 2024
2 parents 6cebc7d + b309ccc commit 030aa8e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ case class FhirInteraction(`type`:String, rid:Option[String] = None, condition:O
* @param description An optional description of the mapping expression. This can be used to provide additional
* context or documentation for the mapping.
*/
case class FhirMappingExpression(expression: FhirExpression,
case class FhirMappingExpression(description: Option[String] = None,
precondition: Option[FhirExpression] = None,
fhirInteraction: Option[FhirInteraction] = None,
description: Option[String] = None
expression: FhirExpression
)

0 comments on commit 030aa8e

Please sign in to comment.