diff --git a/.fhenix/r4/config.yaml b/.fhenix/r4/config.yaml index 732c379..be41b46 100644 --- a/.fhenix/r4/config.yaml +++ b/.fhenix/r4/config.yaml @@ -29,17 +29,17 @@ transformations: - input: type: StructureDefinition if: '{{ eq .Kind "primitive-type" }}' - output: '{{ .Package | replace "." "/" | cutprefix "hl7/fhir/" }}/{{ .Name | snakecase }}.go' + output: 'r4/core/{{ .Name | snakecase }}.go' template: 'templates/primitive.go.tmpl' - input: type: StructureDefinition if: '{{ and (eq .Kind "complex-type") .IsSpecialization }}' - output: '{{ .Package | replace "." "/" | cutprefix "hl7/fhir/" }}/{{ .Name | snakecase }}.go' + output: 'r4/core/{{ .Name | snakecase }}.go' template: 'templates/complex.go.tmpl' - input: type: StructureDefinition if: '{{ and (not .IsConstraint) (eq .Kind "resource") (not .IsAbstract) }}' - output: '{{ .Package | replace "." "/" | cutprefix "hl7/fhir/" }}/resources/{{ .Name | lowercase }}/{{ .Name | snakecase }}.go' + output: 'r4/core/resources/{{ .Name | lowercase }}/{{ .Name | snakecase }}.go' template: default: 'templates/resource.go.tmpl' resource-field-type: 'templates/utils/resource-field-type.go.tmpl' @@ -53,17 +53,19 @@ transformations: - input: type: StructureDefinition if: '{{ .IsAbstract }}' - output: '{{ .Package | replace "." "/" | cutprefix "hl7/fhir/" }}/{{ .Name | snakecase }}.go' + output: 'r4/core/{{ .Name | snakecase }}.go' template: 'templates/base-profile.go.tmpl' - input: type: StructureDefinition if: '{{ or .IsAbstract .HasDerived }}' - output: '{{ .Package | replace "." "/" | cutprefix "hl7/fhir/" }}/internal/profileimpl/{{ .Name | snakecase }}.go' + output: 'r4/core/internal/profileimpl/{{ .Name | snakecase }}.go' template: 'templates/profileimpl.go.tmpl' - # - input: - # type: StructureDefinition - # if: '{{ or .IsAbstract .HasDerived }}' - # output: '{{ .Package | replace "." "/" | cutprefix "hl7/fhir/" }}/profiles/{{ .Name | snakecase }}.go' - # template: 'templates/profile.go.tmpl' + - input: + type: StructureDefinition + if: '{{ and (eq .Kind "primitive-type") .HasDerived }}' + output: 'r4/core/profiles/{{ .Name | snakecase }}.go' + template: + default: 'templates/profile.go.tmpl' + resource-field-type: 'templates/utils/resource-field-type.go.tmpl' diff --git a/.fhenix/r4/templates/base-profile.go.tmpl b/.fhenix/r4/templates/base-profile.go.tmpl index db8fe02..ace927e 100644 --- a/.fhenix/r4/templates/base-profile.go.tmpl +++ b/.fhenix/r4/templates/base-profile.go.tmpl @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package fhir import ( diff --git a/.fhenix/r4/templates/codes.go.tmpl b/.fhenix/r4/templates/codes.go.tmpl index 2c3b049..cbd0b16 100644 --- a/.fhenix/r4/templates/codes.go.tmpl +++ b/.fhenix/r4/templates/codes.go.tmpl @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package codes import ( diff --git a/.fhenix/r4/templates/complex.go.tmpl b/.fhenix/r4/templates/complex.go.tmpl index 071ece8..4bf2ca8 100644 --- a/.fhenix/r4/templates/complex.go.tmpl +++ b/.fhenix/r4/templates/complex.go.tmpl @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/.fhenix/r4/templates/primitive.go.tmpl b/.fhenix/r4/templates/primitive.go.tmpl index d0ff3e5..5af9870 100644 --- a/.fhenix/r4/templates/primitive.go.tmpl +++ b/.fhenix/r4/templates/primitive.go.tmpl @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/.fhenix/r4/templates/profile.go.tmpl b/.fhenix/r4/templates/profile.go.tmpl index 0762c8b..b308786 100644 --- a/.fhenix/r4/templates/profile.go.tmpl +++ b/.fhenix/r4/templates/profile.go.tmpl @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. @@ -14,7 +14,7 @@ import ( type {{ template "struct-name" . }} interface { {{- range .Fields }} {{ template "field-header" . }} - Get{{- template "field-name" . -}}() {{- template "field-type" . }} + Get{{- template "field-name" . -}}() {{- template "resource-field-type" . }} {{ end }} // Implement base {{ template "struct-name" . }}Profile profileimpl.{{ template "struct-name" . }}Profile diff --git a/.fhenix/r4/templates/profileimpl.go.tmpl b/.fhenix/r4/templates/profileimpl.go.tmpl index 30f8ad1..4163dfd 100644 --- a/.fhenix/r4/templates/profileimpl.go.tmpl +++ b/.fhenix/r4/templates/profileimpl.go.tmpl @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/.fhenix/r4/templates/resource.go.tmpl b/.fhenix/r4/templates/resource.go.tmpl index 208b07d..1f245d1 100644 --- a/.fhenix/r4/templates/resource.go.tmpl +++ b/.fhenix/r4/templates/resource.go.tmpl @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/address.go b/r4/core/address.go index bcf3365..f7c6f03 100644 --- a/r4/core/address.go +++ b/r4/core/address.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/age.go b/r4/core/age.go index 18e1933..a332b33 100644 --- a/r4/core/age.go +++ b/r4/core/age.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/annotation.go b/r4/core/annotation.go index 16a82fb..3c7703f 100644 --- a/r4/core/annotation.go +++ b/r4/core/annotation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/attachment.go b/r4/core/attachment.go index 949e293..b2adbc3 100644 --- a/r4/core/attachment.go +++ b/r4/core/attachment.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/backbone_element.go b/r4/core/backbone_element.go index ff5fc88..436b835 100644 --- a/r4/core/backbone_element.go +++ b/r4/core/backbone_element.go @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package fhir import ( diff --git a/r4/core/base_64_binary.go b/r4/core/base_64_binary.go index ef1ef67..5bfe17d 100644 --- a/r4/core/base_64_binary.go +++ b/r4/core/base_64_binary.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/boolean.go b/r4/core/boolean.go index 1e32100..534d305 100644 --- a/r4/core/boolean.go +++ b/r4/core/boolean.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/canonical.go b/r4/core/canonical.go index 95b85a9..1f3ab34 100644 --- a/r4/core/canonical.go +++ b/r4/core/canonical.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/code.go b/r4/core/code.go index d920185..d29245f 100644 --- a/r4/core/code.go +++ b/r4/core/code.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/codeable_concept.go b/r4/core/codeable_concept.go index 0a49694..e6ad9be 100644 --- a/r4/core/codeable_concept.go +++ b/r4/core/codeable_concept.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/coding.go b/r4/core/coding.go index 6cfc3fb..b3bc389 100644 --- a/r4/core/coding.go +++ b/r4/core/coding.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/contact_detail.go b/r4/core/contact_detail.go index 2a948f7..18f44e9 100644 --- a/r4/core/contact_detail.go +++ b/r4/core/contact_detail.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/contact_point.go b/r4/core/contact_point.go index 01a668b..5aa3048 100644 --- a/r4/core/contact_point.go +++ b/r4/core/contact_point.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/contributor.go b/r4/core/contributor.go index 34b1d38..9fdd4f9 100644 --- a/r4/core/contributor.go +++ b/r4/core/contributor.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/count.go b/r4/core/count.go index 70e2b24..3719dfe 100644 --- a/r4/core/count.go +++ b/r4/core/count.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/data_requirement.go b/r4/core/data_requirement.go index e61d808..b385e40 100644 --- a/r4/core/data_requirement.go +++ b/r4/core/data_requirement.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/date.go b/r4/core/date.go index 7bf3664..47b9cfb 100644 --- a/r4/core/date.go +++ b/r4/core/date.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/date_time.go b/r4/core/date_time.go index e004ee7..e61d080 100644 --- a/r4/core/date_time.go +++ b/r4/core/date_time.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/decimal.go b/r4/core/decimal.go index 0a46c5b..ecfd2bb 100644 --- a/r4/core/decimal.go +++ b/r4/core/decimal.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/distance.go b/r4/core/distance.go index a4ef464..fdc4a6a 100644 --- a/r4/core/distance.go +++ b/r4/core/distance.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/document_section_library.go b/r4/core/document_section_library.go index fc43530..b9418f0 100644 --- a/r4/core/document_section_library.go +++ b/r4/core/document_section_library.go @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package fhir import ( diff --git a/r4/core/domain_resource.go b/r4/core/domain_resource.go index 717297f..4bcfcca 100644 --- a/r4/core/domain_resource.go +++ b/r4/core/domain_resource.go @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package fhir import ( diff --git a/r4/core/dosage.go b/r4/core/dosage.go index 6bfcb66..2cd032b 100644 --- a/r4/core/dosage.go +++ b/r4/core/dosage.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/duration.go b/r4/core/duration.go index 150a8ce..9eacba2 100644 --- a/r4/core/duration.go +++ b/r4/core/duration.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/element.go b/r4/core/element.go index de607b7..5d0caf5 100644 --- a/r4/core/element.go +++ b/r4/core/element.go @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package fhir import ( diff --git a/r4/core/element_definition.go b/r4/core/element_definition.go index 715ab68..3067ae3 100644 --- a/r4/core/element_definition.go +++ b/r4/core/element_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/expression.go b/r4/core/expression.go index 67f9973..2438b38 100644 --- a/r4/core/expression.go +++ b/r4/core/expression.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/extension.go b/r4/core/extension.go index b7e0329..155f191 100644 --- a/r4/core/extension.go +++ b/r4/core/extension.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/human_name.go b/r4/core/human_name.go index 90ba45b..d6cf8eb 100644 --- a/r4/core/human_name.go +++ b/r4/core/human_name.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/id.go b/r4/core/id.go index 411994e..8a1adcf 100644 --- a/r4/core/id.go +++ b/r4/core/id.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/identifier.go b/r4/core/identifier.go index ab2f67e..214ad73 100644 --- a/r4/core/identifier.go +++ b/r4/core/identifier.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/instant.go b/r4/core/instant.go index 0a2fac3..c547b1a 100644 --- a/r4/core/instant.go +++ b/r4/core/instant.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/integer.go b/r4/core/integer.go index ac26bd6..af7f089 100644 --- a/r4/core/integer.go +++ b/r4/core/integer.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/activity_definition.go b/r4/core/internal/profileimpl/activity_definition.go index 467cee1..0baa4a0 100644 --- a/r4/core/internal/profileimpl/activity_definition.go +++ b/r4/core/internal/profileimpl/activity_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/audit_event.go b/r4/core/internal/profileimpl/audit_event.go index 1353805..eb8ded5 100644 --- a/r4/core/internal/profileimpl/audit_event.go +++ b/r4/core/internal/profileimpl/audit_event.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/backbone_element.go b/r4/core/internal/profileimpl/backbone_element.go index 234c16d..70ba06b 100644 --- a/r4/core/internal/profileimpl/backbone_element.go +++ b/r4/core/internal/profileimpl/backbone_element.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/code_system.go b/r4/core/internal/profileimpl/code_system.go index c92a83c..bc300a7 100644 --- a/r4/core/internal/profileimpl/code_system.go +++ b/r4/core/internal/profileimpl/code_system.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/composition.go b/r4/core/internal/profileimpl/composition.go index 9a830bb..a7229ee 100644 --- a/r4/core/internal/profileimpl/composition.go +++ b/r4/core/internal/profileimpl/composition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/diagnostic_report.go b/r4/core/internal/profileimpl/diagnostic_report.go index eb61204..985e03a 100644 --- a/r4/core/internal/profileimpl/diagnostic_report.go +++ b/r4/core/internal/profileimpl/diagnostic_report.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/document_section_library.go b/r4/core/internal/profileimpl/document_section_library.go index b7e6db4..c7c6507 100644 --- a/r4/core/internal/profileimpl/document_section_library.go +++ b/r4/core/internal/profileimpl/document_section_library.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/domain_resource.go b/r4/core/internal/profileimpl/domain_resource.go index a83b606..f69bb3f 100644 --- a/r4/core/internal/profileimpl/domain_resource.go +++ b/r4/core/internal/profileimpl/domain_resource.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/element.go b/r4/core/internal/profileimpl/element.go index 4bcb96f..da604ef 100644 --- a/r4/core/internal/profileimpl/element.go +++ b/r4/core/internal/profileimpl/element.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/element_definition.go b/r4/core/internal/profileimpl/element_definition.go index bffac59..66ebafe 100644 --- a/r4/core/internal/profileimpl/element_definition.go +++ b/r4/core/internal/profileimpl/element_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/evidence.go b/r4/core/internal/profileimpl/evidence.go index 1ea6c74..7506248 100644 --- a/r4/core/internal/profileimpl/evidence.go +++ b/r4/core/internal/profileimpl/evidence.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/evidence_variable.go b/r4/core/internal/profileimpl/evidence_variable.go index 9acdb06..db60a2a 100644 --- a/r4/core/internal/profileimpl/evidence_variable.go +++ b/r4/core/internal/profileimpl/evidence_variable.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/extension.go b/r4/core/internal/profileimpl/extension.go index 4ff6d18..b4d748e 100644 --- a/r4/core/internal/profileimpl/extension.go +++ b/r4/core/internal/profileimpl/extension.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/family_member_history.go b/r4/core/internal/profileimpl/family_member_history.go index b3c6fd8..3f39ab5 100644 --- a/r4/core/internal/profileimpl/family_member_history.go +++ b/r4/core/internal/profileimpl/family_member_history.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/group.go b/r4/core/internal/profileimpl/group.go index d57ecce..5b476e6 100644 --- a/r4/core/internal/profileimpl/group.go +++ b/r4/core/internal/profileimpl/group.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/guidance_response.go b/r4/core/internal/profileimpl/guidance_response.go index b159b76..ceeaa58 100644 --- a/r4/core/internal/profileimpl/guidance_response.go +++ b/r4/core/internal/profileimpl/guidance_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/integer.go b/r4/core/internal/profileimpl/integer.go index aab5a2a..2b4bc5f 100644 --- a/r4/core/internal/profileimpl/integer.go +++ b/r4/core/internal/profileimpl/integer.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/library.go b/r4/core/internal/profileimpl/library.go index e9bd2be..6f124b1 100644 --- a/r4/core/internal/profileimpl/library.go +++ b/r4/core/internal/profileimpl/library.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/measure.go b/r4/core/internal/profileimpl/measure.go index 665216e..e740c2a 100644 --- a/r4/core/internal/profileimpl/measure.go +++ b/r4/core/internal/profileimpl/measure.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/observation.go b/r4/core/internal/profileimpl/observation.go index 89e47f2..f9f32c3 100644 --- a/r4/core/internal/profileimpl/observation.go +++ b/r4/core/internal/profileimpl/observation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/observation_vitalsigns.go b/r4/core/internal/profileimpl/observation_vitalsigns.go index 870ec90..79b6fe2 100644 --- a/r4/core/internal/profileimpl/observation_vitalsigns.go +++ b/r4/core/internal/profileimpl/observation_vitalsigns.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/plan_definition.go b/r4/core/internal/profileimpl/plan_definition.go index a6576c1..e7dc4a4 100644 --- a/r4/core/internal/profileimpl/plan_definition.go +++ b/r4/core/internal/profileimpl/plan_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/provenance.go b/r4/core/internal/profileimpl/provenance.go index 8aee7a9..6e7cf06 100644 --- a/r4/core/internal/profileimpl/provenance.go +++ b/r4/core/internal/profileimpl/provenance.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/quantity.go b/r4/core/internal/profileimpl/quantity.go index 42776fa..a74469c 100644 --- a/r4/core/internal/profileimpl/quantity.go +++ b/r4/core/internal/profileimpl/quantity.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/questionnaire.go b/r4/core/internal/profileimpl/questionnaire.go index ae9a8cf..428a587 100644 --- a/r4/core/internal/profileimpl/questionnaire.go +++ b/r4/core/internal/profileimpl/questionnaire.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/request_group.go b/r4/core/internal/profileimpl/request_group.go index 6b97824..7a65576 100644 --- a/r4/core/internal/profileimpl/request_group.go +++ b/r4/core/internal/profileimpl/request_group.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/resource.go b/r4/core/internal/profileimpl/resource.go index 2b0e1b3..7c3fe7f 100644 --- a/r4/core/internal/profileimpl/resource.go +++ b/r4/core/internal/profileimpl/resource.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/service_request.go b/r4/core/internal/profileimpl/service_request.go index fa0189b..da44142 100644 --- a/r4/core/internal/profileimpl/service_request.go +++ b/r4/core/internal/profileimpl/service_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/string.go b/r4/core/internal/profileimpl/string.go index ad7fe22..443249f 100644 --- a/r4/core/internal/profileimpl/string.go +++ b/r4/core/internal/profileimpl/string.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/uri.go b/r4/core/internal/profileimpl/uri.go index 3231f8e..29bc250 100644 --- a/r4/core/internal/profileimpl/uri.go +++ b/r4/core/internal/profileimpl/uri.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/internal/profileimpl/value_set.go b/r4/core/internal/profileimpl/value_set.go index 8fc2dcf..0701915 100644 --- a/r4/core/internal/profileimpl/value_set.go +++ b/r4/core/internal/profileimpl/value_set.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/markdown.go b/r4/core/markdown.go index 039c9e5..0874112 100644 --- a/r4/core/markdown.go +++ b/r4/core/markdown.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/marketing_status.go b/r4/core/marketing_status.go index 8cc7d3e..300a011 100644 --- a/r4/core/marketing_status.go +++ b/r4/core/marketing_status.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/meta.go b/r4/core/meta.go index a318c28..3cfb393 100644 --- a/r4/core/meta.go +++ b/r4/core/meta.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/money.go b/r4/core/money.go index 3b397d5..a475835 100644 --- a/r4/core/money.go +++ b/r4/core/money.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/narrative.go b/r4/core/narrative.go index 61879f8..8e7a310 100644 --- a/r4/core/narrative.go +++ b/r4/core/narrative.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/oid.go b/r4/core/oid.go index 72e2bf2..5838f86 100644 --- a/r4/core/oid.go +++ b/r4/core/oid.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/parameter_definition.go b/r4/core/parameter_definition.go index 7c0be74..6aa7cda 100644 --- a/r4/core/parameter_definition.go +++ b/r4/core/parameter_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/period.go b/r4/core/period.go index 81c5fc1..3db5893 100644 --- a/r4/core/period.go +++ b/r4/core/period.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/population.go b/r4/core/population.go index d800549..ae49db5 100644 --- a/r4/core/population.go +++ b/r4/core/population.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/positive_int.go b/r4/core/positive_int.go index 6ea209e..3868389 100644 --- a/r4/core/positive_int.go +++ b/r4/core/positive_int.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/prod_characteristic.go b/r4/core/prod_characteristic.go index c09f560..83bab71 100644 --- a/r4/core/prod_characteristic.go +++ b/r4/core/prod_characteristic.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/product_shelf_life.go b/r4/core/product_shelf_life.go index 7e3b078..e3c579e 100644 --- a/r4/core/product_shelf_life.go +++ b/r4/core/product_shelf_life.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/profiles/integer.go b/r4/core/profiles/integer.go new file mode 100644 index 0000000..5fb7c83 --- /dev/null +++ b/r4/core/profiles/integer.go @@ -0,0 +1,39 @@ +// GENERATED CODE - DO NOT EDIT +// +// This file is generated by the FHIR Fhenix code generator tool, which can be +// located at https://github.com/friendly-fhir/fhenix. + +package profile + +import ( + "github.com/friendly-fhir/go-fhir/r4/core" + "github.com/friendly-fhir/go-fhir/r4/core/internal/profileimpl" +) + +// Base StructureDefinition for integer Type: A whole number +// +// Meta Details: +// +// - Package IG: hl7.fhir.r4.core@4.0.1 +// - StructureDefinition: http://hl7.org/fhir/StructureDefinition/integer +// - Source File: StructureDefinition-integer.json +type Integer interface { + // May be used to represent additional information that is not part of the + // basic definition of the resource. 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. + GetExtension() []*fhir.Extension + + // unique id for the element within a resource (for internal references) + GetID() string + + // The actual value + GetValue() int32 + + // Implement base IntegerProfile + profileimpl.IntegerProfile + // Implement base ElementProfile + profileimpl.ElementProfile +} diff --git a/r4/core/profiles/string.go b/r4/core/profiles/string.go new file mode 100644 index 0000000..c491493 --- /dev/null +++ b/r4/core/profiles/string.go @@ -0,0 +1,39 @@ +// GENERATED CODE - DO NOT EDIT +// +// This file is generated by the FHIR Fhenix code generator tool, which can be +// located at https://github.com/friendly-fhir/fhenix. + +package profile + +import ( + "github.com/friendly-fhir/go-fhir/r4/core" + "github.com/friendly-fhir/go-fhir/r4/core/internal/profileimpl" +) + +// Base StructureDefinition for string Type: A sequence of Unicode characters +// +// Meta Details: +// +// - Package IG: hl7.fhir.r4.core@4.0.1 +// - StructureDefinition: http://hl7.org/fhir/StructureDefinition/string +// - Source File: StructureDefinition-string.json +type String interface { + // May be used to represent additional information that is not part of the + // basic definition of the resource. 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. + GetExtension() []*fhir.Extension + + // unique id for the element within a resource (for internal references) + GetID() string + + // The actual value + GetValue() string + + // Implement base StringProfile + profileimpl.StringProfile + // Implement base ElementProfile + profileimpl.ElementProfile +} diff --git a/r4/core/profiles/uri.go b/r4/core/profiles/uri.go new file mode 100644 index 0000000..764b0b7 --- /dev/null +++ b/r4/core/profiles/uri.go @@ -0,0 +1,40 @@ +// GENERATED CODE - DO NOT EDIT +// +// This file is generated by the FHIR Fhenix code generator tool, which can be +// located at https://github.com/friendly-fhir/fhenix. + +package profile + +import ( + "github.com/friendly-fhir/go-fhir/r4/core" + "github.com/friendly-fhir/go-fhir/r4/core/internal/profileimpl" +) + +// Base StructureDefinition for uri Type: String of characters used to identify +// a name or a resource +// +// Meta Details: +// +// - Package IG: hl7.fhir.r4.core@4.0.1 +// - StructureDefinition: http://hl7.org/fhir/StructureDefinition/uri +// - Source File: StructureDefinition-uri.json +type URI interface { + // May be used to represent additional information that is not part of the + // basic definition of the resource. 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. + GetExtension() []*fhir.Extension + + // unique id for the element within a resource (for internal references) + GetID() string + + // The actual value + GetValue() string + + // Implement base URIProfile + profileimpl.URIProfile + // Implement base ElementProfile + profileimpl.ElementProfile +} diff --git a/r4/core/quantity.go b/r4/core/quantity.go index 238552e..57099f8 100644 --- a/r4/core/quantity.go +++ b/r4/core/quantity.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/range.go b/r4/core/range.go index ba5490a..0428a45 100644 --- a/r4/core/range.go +++ b/r4/core/range.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/ratio.go b/r4/core/ratio.go index f4861a0..842d20b 100644 --- a/r4/core/ratio.go +++ b/r4/core/ratio.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/reference.go b/r4/core/reference.go index b3def7f..a1cc9ed 100644 --- a/r4/core/reference.go +++ b/r4/core/reference.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/related_artifact.go b/r4/core/related_artifact.go index bab0ccf..445cbb0 100644 --- a/r4/core/related_artifact.go +++ b/r4/core/related_artifact.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resource.go b/r4/core/resource.go index bf196b4..39f5225 100644 --- a/r4/core/resource.go +++ b/r4/core/resource.go @@ -1,7 +1,8 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. + package fhir import ( diff --git a/r4/core/resources/account/account.go b/r4/core/resources/account/account.go index 8ee828a..84b9df9 100644 --- a/r4/core/resources/account/account.go +++ b/r4/core/resources/account/account.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/activitydefinition/activity_definition.go b/r4/core/resources/activitydefinition/activity_definition.go index 650ed58..4cd4e18 100644 --- a/r4/core/resources/activitydefinition/activity_definition.go +++ b/r4/core/resources/activitydefinition/activity_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/adverseevent/adverse_event.go b/r4/core/resources/adverseevent/adverse_event.go index 0364345..27f8291 100644 --- a/r4/core/resources/adverseevent/adverse_event.go +++ b/r4/core/resources/adverseevent/adverse_event.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/allergyintolerance/allergy_intolerance.go b/r4/core/resources/allergyintolerance/allergy_intolerance.go index e122574..a60bdad 100644 --- a/r4/core/resources/allergyintolerance/allergy_intolerance.go +++ b/r4/core/resources/allergyintolerance/allergy_intolerance.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/appointment/appointment.go b/r4/core/resources/appointment/appointment.go index ed93979..554d878 100644 --- a/r4/core/resources/appointment/appointment.go +++ b/r4/core/resources/appointment/appointment.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/appointmentresponse/appointment_response.go b/r4/core/resources/appointmentresponse/appointment_response.go index 5029216..0975d63 100644 --- a/r4/core/resources/appointmentresponse/appointment_response.go +++ b/r4/core/resources/appointmentresponse/appointment_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/auditevent/audit_event.go b/r4/core/resources/auditevent/audit_event.go index 6919240..7316ccd 100644 --- a/r4/core/resources/auditevent/audit_event.go +++ b/r4/core/resources/auditevent/audit_event.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/basic/basic.go b/r4/core/resources/basic/basic.go index eaa25d5..5fdd001 100644 --- a/r4/core/resources/basic/basic.go +++ b/r4/core/resources/basic/basic.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/binary/binary.go b/r4/core/resources/binary/binary.go index a6df56c..8142941 100644 --- a/r4/core/resources/binary/binary.go +++ b/r4/core/resources/binary/binary.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/biologicallyderivedproduct/biologically_derived_product.go b/r4/core/resources/biologicallyderivedproduct/biologically_derived_product.go index 6e58142..c59bf15 100644 --- a/r4/core/resources/biologicallyderivedproduct/biologically_derived_product.go +++ b/r4/core/resources/biologicallyderivedproduct/biologically_derived_product.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/bodystructure/body_structure.go b/r4/core/resources/bodystructure/body_structure.go index 545ac6b..1e0d0f8 100644 --- a/r4/core/resources/bodystructure/body_structure.go +++ b/r4/core/resources/bodystructure/body_structure.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/bundle/bundle.go b/r4/core/resources/bundle/bundle.go index 17b0302..2c462d6 100644 --- a/r4/core/resources/bundle/bundle.go +++ b/r4/core/resources/bundle/bundle.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/capabilitystatement/capability_statement.go b/r4/core/resources/capabilitystatement/capability_statement.go index f198377..9db9c25 100644 --- a/r4/core/resources/capabilitystatement/capability_statement.go +++ b/r4/core/resources/capabilitystatement/capability_statement.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/careplan/care_plan.go b/r4/core/resources/careplan/care_plan.go index a830323..96072dc 100644 --- a/r4/core/resources/careplan/care_plan.go +++ b/r4/core/resources/careplan/care_plan.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/careteam/care_team.go b/r4/core/resources/careteam/care_team.go index c92b764..15dcb1d 100644 --- a/r4/core/resources/careteam/care_team.go +++ b/r4/core/resources/careteam/care_team.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/catalogentry/catalog_entry.go b/r4/core/resources/catalogentry/catalog_entry.go index 28333fc..60b7151 100644 --- a/r4/core/resources/catalogentry/catalog_entry.go +++ b/r4/core/resources/catalogentry/catalog_entry.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/chargeitem/charge_item.go b/r4/core/resources/chargeitem/charge_item.go index 3844ce8..bd7adaa 100644 --- a/r4/core/resources/chargeitem/charge_item.go +++ b/r4/core/resources/chargeitem/charge_item.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/chargeitemdefinition/charge_item_definition.go b/r4/core/resources/chargeitemdefinition/charge_item_definition.go index c2278f3..5cf90e8 100644 --- a/r4/core/resources/chargeitemdefinition/charge_item_definition.go +++ b/r4/core/resources/chargeitemdefinition/charge_item_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/claim/claim.go b/r4/core/resources/claim/claim.go index 299ebe4..54816d0 100644 --- a/r4/core/resources/claim/claim.go +++ b/r4/core/resources/claim/claim.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/claimresponse/claim_response.go b/r4/core/resources/claimresponse/claim_response.go index 4f05861..be3e544 100644 --- a/r4/core/resources/claimresponse/claim_response.go +++ b/r4/core/resources/claimresponse/claim_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/clinicalimpression/clinical_impression.go b/r4/core/resources/clinicalimpression/clinical_impression.go index 3080ba4..cbc5dcd 100644 --- a/r4/core/resources/clinicalimpression/clinical_impression.go +++ b/r4/core/resources/clinicalimpression/clinical_impression.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/codesystem/code_system.go b/r4/core/resources/codesystem/code_system.go index 9ca2a0a..595d974 100644 --- a/r4/core/resources/codesystem/code_system.go +++ b/r4/core/resources/codesystem/code_system.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/communication/communication.go b/r4/core/resources/communication/communication.go index c3dd757..0c7a0f8 100644 --- a/r4/core/resources/communication/communication.go +++ b/r4/core/resources/communication/communication.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/communicationrequest/communication_request.go b/r4/core/resources/communicationrequest/communication_request.go index 0d41f81..768c60a 100644 --- a/r4/core/resources/communicationrequest/communication_request.go +++ b/r4/core/resources/communicationrequest/communication_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/compartmentdefinition/compartment_definition.go b/r4/core/resources/compartmentdefinition/compartment_definition.go index 9e117a9..e586384 100644 --- a/r4/core/resources/compartmentdefinition/compartment_definition.go +++ b/r4/core/resources/compartmentdefinition/compartment_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/composition/composition.go b/r4/core/resources/composition/composition.go index caecc5e..cb42be3 100644 --- a/r4/core/resources/composition/composition.go +++ b/r4/core/resources/composition/composition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/conceptmap/concept_map.go b/r4/core/resources/conceptmap/concept_map.go index 68c4510..a59f5e8 100644 --- a/r4/core/resources/conceptmap/concept_map.go +++ b/r4/core/resources/conceptmap/concept_map.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/condition/condition.go b/r4/core/resources/condition/condition.go index eec54b0..6a6a126 100644 --- a/r4/core/resources/condition/condition.go +++ b/r4/core/resources/condition/condition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/consent/consent.go b/r4/core/resources/consent/consent.go index 9cd4987..c2e8095 100644 --- a/r4/core/resources/consent/consent.go +++ b/r4/core/resources/consent/consent.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/contract/contract.go b/r4/core/resources/contract/contract.go index 28c2df8..14ac476 100644 --- a/r4/core/resources/contract/contract.go +++ b/r4/core/resources/contract/contract.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/coverage/coverage.go b/r4/core/resources/coverage/coverage.go index a9b83ea..9e88340 100644 --- a/r4/core/resources/coverage/coverage.go +++ b/r4/core/resources/coverage/coverage.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/coverageeligibilityrequest/coverage_eligibility_request.go b/r4/core/resources/coverageeligibilityrequest/coverage_eligibility_request.go index dcc1f47..27232aa 100644 --- a/r4/core/resources/coverageeligibilityrequest/coverage_eligibility_request.go +++ b/r4/core/resources/coverageeligibilityrequest/coverage_eligibility_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/coverageeligibilityresponse/coverage_eligibility_response.go b/r4/core/resources/coverageeligibilityresponse/coverage_eligibility_response.go index d341dbe..90adaa8 100644 --- a/r4/core/resources/coverageeligibilityresponse/coverage_eligibility_response.go +++ b/r4/core/resources/coverageeligibilityresponse/coverage_eligibility_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/detectedissue/detected_issue.go b/r4/core/resources/detectedissue/detected_issue.go index a5fe8c0..279a762 100644 --- a/r4/core/resources/detectedissue/detected_issue.go +++ b/r4/core/resources/detectedissue/detected_issue.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/device/device.go b/r4/core/resources/device/device.go index a5d7ed2..775f2e2 100644 --- a/r4/core/resources/device/device.go +++ b/r4/core/resources/device/device.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/devicedefinition/device_definition.go b/r4/core/resources/devicedefinition/device_definition.go index 60646b9..dae6fec 100644 --- a/r4/core/resources/devicedefinition/device_definition.go +++ b/r4/core/resources/devicedefinition/device_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/devicemetric/device_metric.go b/r4/core/resources/devicemetric/device_metric.go index f974abb..85f7883 100644 --- a/r4/core/resources/devicemetric/device_metric.go +++ b/r4/core/resources/devicemetric/device_metric.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/devicerequest/device_request.go b/r4/core/resources/devicerequest/device_request.go index 9511f8c..f9359cb 100644 --- a/r4/core/resources/devicerequest/device_request.go +++ b/r4/core/resources/devicerequest/device_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/deviceusestatement/device_use_statement.go b/r4/core/resources/deviceusestatement/device_use_statement.go index a667c10..b1ee0e0 100644 --- a/r4/core/resources/deviceusestatement/device_use_statement.go +++ b/r4/core/resources/deviceusestatement/device_use_statement.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/diagnosticreport/diagnostic_report.go b/r4/core/resources/diagnosticreport/diagnostic_report.go index 2246cbe..89e4db0 100644 --- a/r4/core/resources/diagnosticreport/diagnostic_report.go +++ b/r4/core/resources/diagnosticreport/diagnostic_report.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/documentmanifest/document_manifest.go b/r4/core/resources/documentmanifest/document_manifest.go index 4e5c4d4..b5b16cf 100644 --- a/r4/core/resources/documentmanifest/document_manifest.go +++ b/r4/core/resources/documentmanifest/document_manifest.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/documentreference/document_reference.go b/r4/core/resources/documentreference/document_reference.go index 282ed43..3cf5ebd 100644 --- a/r4/core/resources/documentreference/document_reference.go +++ b/r4/core/resources/documentreference/document_reference.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/effectevidencesynthesis/effect_evidence_synthesis.go b/r4/core/resources/effectevidencesynthesis/effect_evidence_synthesis.go index eb4681d..f5dfada 100644 --- a/r4/core/resources/effectevidencesynthesis/effect_evidence_synthesis.go +++ b/r4/core/resources/effectevidencesynthesis/effect_evidence_synthesis.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/encounter/encounter.go b/r4/core/resources/encounter/encounter.go index 3620d2e..081f0d1 100644 --- a/r4/core/resources/encounter/encounter.go +++ b/r4/core/resources/encounter/encounter.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/endpoint/endpoint.go b/r4/core/resources/endpoint/endpoint.go index 0e998fa..b070fbd 100644 --- a/r4/core/resources/endpoint/endpoint.go +++ b/r4/core/resources/endpoint/endpoint.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/enrollmentrequest/enrollment_request.go b/r4/core/resources/enrollmentrequest/enrollment_request.go index 5b6b7bc..045b5c7 100644 --- a/r4/core/resources/enrollmentrequest/enrollment_request.go +++ b/r4/core/resources/enrollmentrequest/enrollment_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/enrollmentresponse/enrollment_response.go b/r4/core/resources/enrollmentresponse/enrollment_response.go index 55dfdbb..c67e253 100644 --- a/r4/core/resources/enrollmentresponse/enrollment_response.go +++ b/r4/core/resources/enrollmentresponse/enrollment_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/episodeofcare/episode_of_care.go b/r4/core/resources/episodeofcare/episode_of_care.go index f89b1e5..7a14b2b 100644 --- a/r4/core/resources/episodeofcare/episode_of_care.go +++ b/r4/core/resources/episodeofcare/episode_of_care.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/eventdefinition/event_definition.go b/r4/core/resources/eventdefinition/event_definition.go index f443b35..95d9ac5 100644 --- a/r4/core/resources/eventdefinition/event_definition.go +++ b/r4/core/resources/eventdefinition/event_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/evidence/evidence.go b/r4/core/resources/evidence/evidence.go index ead7dea..320a72f 100644 --- a/r4/core/resources/evidence/evidence.go +++ b/r4/core/resources/evidence/evidence.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/evidencevariable/evidence_variable.go b/r4/core/resources/evidencevariable/evidence_variable.go index 4860e31..030b404 100644 --- a/r4/core/resources/evidencevariable/evidence_variable.go +++ b/r4/core/resources/evidencevariable/evidence_variable.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/examplescenario/example_scenario.go b/r4/core/resources/examplescenario/example_scenario.go index ef7e541..c394ba1 100644 --- a/r4/core/resources/examplescenario/example_scenario.go +++ b/r4/core/resources/examplescenario/example_scenario.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/explanationofbenefit/explanation_of_benefit.go b/r4/core/resources/explanationofbenefit/explanation_of_benefit.go index e04c541..52cf37d 100644 --- a/r4/core/resources/explanationofbenefit/explanation_of_benefit.go +++ b/r4/core/resources/explanationofbenefit/explanation_of_benefit.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/familymemberhistory/family_member_history.go b/r4/core/resources/familymemberhistory/family_member_history.go index afb5d18..afe6fb3 100644 --- a/r4/core/resources/familymemberhistory/family_member_history.go +++ b/r4/core/resources/familymemberhistory/family_member_history.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/flag/flag.go b/r4/core/resources/flag/flag.go index 66b43c2..14d0a0a 100644 --- a/r4/core/resources/flag/flag.go +++ b/r4/core/resources/flag/flag.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/goal/goal.go b/r4/core/resources/goal/goal.go index 3f81381..1f22c4b 100644 --- a/r4/core/resources/goal/goal.go +++ b/r4/core/resources/goal/goal.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/graphdefinition/graph_definition.go b/r4/core/resources/graphdefinition/graph_definition.go index 91540f7..a9aa8a7 100644 --- a/r4/core/resources/graphdefinition/graph_definition.go +++ b/r4/core/resources/graphdefinition/graph_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/group/group.go b/r4/core/resources/group/group.go index 38da5cd..4c09b1b 100644 --- a/r4/core/resources/group/group.go +++ b/r4/core/resources/group/group.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/guidanceresponse/guidance_response.go b/r4/core/resources/guidanceresponse/guidance_response.go index e53226a..ebec100 100644 --- a/r4/core/resources/guidanceresponse/guidance_response.go +++ b/r4/core/resources/guidanceresponse/guidance_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/healthcareservice/healthcare_service.go b/r4/core/resources/healthcareservice/healthcare_service.go index cbe2c2c..8cfadef 100644 --- a/r4/core/resources/healthcareservice/healthcare_service.go +++ b/r4/core/resources/healthcareservice/healthcare_service.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/imagingstudy/imaging_study.go b/r4/core/resources/imagingstudy/imaging_study.go index 4779481..99ab2be 100644 --- a/r4/core/resources/imagingstudy/imaging_study.go +++ b/r4/core/resources/imagingstudy/imaging_study.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/immunization/immunization.go b/r4/core/resources/immunization/immunization.go index 5c471a6..94ec90d 100644 --- a/r4/core/resources/immunization/immunization.go +++ b/r4/core/resources/immunization/immunization.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/immunizationevaluation/immunization_evaluation.go b/r4/core/resources/immunizationevaluation/immunization_evaluation.go index ea46ba8..331a398 100644 --- a/r4/core/resources/immunizationevaluation/immunization_evaluation.go +++ b/r4/core/resources/immunizationevaluation/immunization_evaluation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/immunizationrecommendation/immunization_recommendation.go b/r4/core/resources/immunizationrecommendation/immunization_recommendation.go index ac9a362..b206526 100644 --- a/r4/core/resources/immunizationrecommendation/immunization_recommendation.go +++ b/r4/core/resources/immunizationrecommendation/immunization_recommendation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/implementationguide/implementation_guide.go b/r4/core/resources/implementationguide/implementation_guide.go index 63056fc..9d4d77a 100644 --- a/r4/core/resources/implementationguide/implementation_guide.go +++ b/r4/core/resources/implementationguide/implementation_guide.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/insuranceplan/insurance_plan.go b/r4/core/resources/insuranceplan/insurance_plan.go index b1fee60..ff3788b 100644 --- a/r4/core/resources/insuranceplan/insurance_plan.go +++ b/r4/core/resources/insuranceplan/insurance_plan.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/invoice/invoice.go b/r4/core/resources/invoice/invoice.go index 453dd58..44a2ea5 100644 --- a/r4/core/resources/invoice/invoice.go +++ b/r4/core/resources/invoice/invoice.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/library/library.go b/r4/core/resources/library/library.go index f633500..7c44ec4 100644 --- a/r4/core/resources/library/library.go +++ b/r4/core/resources/library/library.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/linkage/linkage.go b/r4/core/resources/linkage/linkage.go index 96b3b2a..93c8053 100644 --- a/r4/core/resources/linkage/linkage.go +++ b/r4/core/resources/linkage/linkage.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/list/list.go b/r4/core/resources/list/list.go index 6874d10..c399ef1 100644 --- a/r4/core/resources/list/list.go +++ b/r4/core/resources/list/list.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/location/location.go b/r4/core/resources/location/location.go index ab642cf..50af413 100644 --- a/r4/core/resources/location/location.go +++ b/r4/core/resources/location/location.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/measure/measure.go b/r4/core/resources/measure/measure.go index ef2bf8e..724e0e2 100644 --- a/r4/core/resources/measure/measure.go +++ b/r4/core/resources/measure/measure.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/measurereport/measure_report.go b/r4/core/resources/measurereport/measure_report.go index 0954c5e..e0f50e7 100644 --- a/r4/core/resources/measurereport/measure_report.go +++ b/r4/core/resources/measurereport/measure_report.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/media/media.go b/r4/core/resources/media/media.go index 8925bcb..579cb8f 100644 --- a/r4/core/resources/media/media.go +++ b/r4/core/resources/media/media.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medication/medication.go b/r4/core/resources/medication/medication.go index 4293a22..34bf169 100644 --- a/r4/core/resources/medication/medication.go +++ b/r4/core/resources/medication/medication.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicationadministration/medication_administration.go b/r4/core/resources/medicationadministration/medication_administration.go index de834ae..74439dd 100644 --- a/r4/core/resources/medicationadministration/medication_administration.go +++ b/r4/core/resources/medicationadministration/medication_administration.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicationdispense/medication_dispense.go b/r4/core/resources/medicationdispense/medication_dispense.go index b388b64..fe5e875 100644 --- a/r4/core/resources/medicationdispense/medication_dispense.go +++ b/r4/core/resources/medicationdispense/medication_dispense.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicationknowledge/medication_knowledge.go b/r4/core/resources/medicationknowledge/medication_knowledge.go index 08b9f7a..240b5aa 100644 --- a/r4/core/resources/medicationknowledge/medication_knowledge.go +++ b/r4/core/resources/medicationknowledge/medication_knowledge.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicationrequest/medication_request.go b/r4/core/resources/medicationrequest/medication_request.go index 22e4d74..846eff2 100644 --- a/r4/core/resources/medicationrequest/medication_request.go +++ b/r4/core/resources/medicationrequest/medication_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicationstatement/medication_statement.go b/r4/core/resources/medicationstatement/medication_statement.go index b921196..d810e92 100644 --- a/r4/core/resources/medicationstatement/medication_statement.go +++ b/r4/core/resources/medicationstatement/medication_statement.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproduct/medicinal_product.go b/r4/core/resources/medicinalproduct/medicinal_product.go index 2c3467c..fcb6da2 100644 --- a/r4/core/resources/medicinalproduct/medicinal_product.go +++ b/r4/core/resources/medicinalproduct/medicinal_product.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductauthorization/medicinal_product_authorization.go b/r4/core/resources/medicinalproductauthorization/medicinal_product_authorization.go index fe35838..7097687 100644 --- a/r4/core/resources/medicinalproductauthorization/medicinal_product_authorization.go +++ b/r4/core/resources/medicinalproductauthorization/medicinal_product_authorization.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductcontraindication/medicinal_product_contraindication.go b/r4/core/resources/medicinalproductcontraindication/medicinal_product_contraindication.go index 31b1d51..2b973e7 100644 --- a/r4/core/resources/medicinalproductcontraindication/medicinal_product_contraindication.go +++ b/r4/core/resources/medicinalproductcontraindication/medicinal_product_contraindication.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductindication/medicinal_product_indication.go b/r4/core/resources/medicinalproductindication/medicinal_product_indication.go index 570757d..a241413 100644 --- a/r4/core/resources/medicinalproductindication/medicinal_product_indication.go +++ b/r4/core/resources/medicinalproductindication/medicinal_product_indication.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductingredient/medicinal_product_ingredient.go b/r4/core/resources/medicinalproductingredient/medicinal_product_ingredient.go index f9598f8..3dfc84f 100644 --- a/r4/core/resources/medicinalproductingredient/medicinal_product_ingredient.go +++ b/r4/core/resources/medicinalproductingredient/medicinal_product_ingredient.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductinteraction/medicinal_product_interaction.go b/r4/core/resources/medicinalproductinteraction/medicinal_product_interaction.go index 1c88050..d68a832 100644 --- a/r4/core/resources/medicinalproductinteraction/medicinal_product_interaction.go +++ b/r4/core/resources/medicinalproductinteraction/medicinal_product_interaction.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductmanufactured/medicinal_product_manufactured.go b/r4/core/resources/medicinalproductmanufactured/medicinal_product_manufactured.go index 36bc88d..dbae122 100644 --- a/r4/core/resources/medicinalproductmanufactured/medicinal_product_manufactured.go +++ b/r4/core/resources/medicinalproductmanufactured/medicinal_product_manufactured.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductpackaged/medicinal_product_packaged.go b/r4/core/resources/medicinalproductpackaged/medicinal_product_packaged.go index ad3ad15..2282eaf 100644 --- a/r4/core/resources/medicinalproductpackaged/medicinal_product_packaged.go +++ b/r4/core/resources/medicinalproductpackaged/medicinal_product_packaged.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductpharmaceutical/medicinal_product_pharmaceutical.go b/r4/core/resources/medicinalproductpharmaceutical/medicinal_product_pharmaceutical.go index c7f9148..9eff260 100644 --- a/r4/core/resources/medicinalproductpharmaceutical/medicinal_product_pharmaceutical.go +++ b/r4/core/resources/medicinalproductpharmaceutical/medicinal_product_pharmaceutical.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/medicinalproductundesirableeffect/medicinal_product_undesirable_effect.go b/r4/core/resources/medicinalproductundesirableeffect/medicinal_product_undesirable_effect.go index b8f7fad..6e281d1 100644 --- a/r4/core/resources/medicinalproductundesirableeffect/medicinal_product_undesirable_effect.go +++ b/r4/core/resources/medicinalproductundesirableeffect/medicinal_product_undesirable_effect.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/messagedefinition/message_definition.go b/r4/core/resources/messagedefinition/message_definition.go index 1ae6df5..0df92bb 100644 --- a/r4/core/resources/messagedefinition/message_definition.go +++ b/r4/core/resources/messagedefinition/message_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/messageheader/message_header.go b/r4/core/resources/messageheader/message_header.go index d8e7702..4137117 100644 --- a/r4/core/resources/messageheader/message_header.go +++ b/r4/core/resources/messageheader/message_header.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/molecularsequence/molecular_sequence.go b/r4/core/resources/molecularsequence/molecular_sequence.go index 4737ef9..364dc88 100644 --- a/r4/core/resources/molecularsequence/molecular_sequence.go +++ b/r4/core/resources/molecularsequence/molecular_sequence.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/namingsystem/naming_system.go b/r4/core/resources/namingsystem/naming_system.go index a3d3ef1..dead231 100644 --- a/r4/core/resources/namingsystem/naming_system.go +++ b/r4/core/resources/namingsystem/naming_system.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/nutritionorder/nutrition_order.go b/r4/core/resources/nutritionorder/nutrition_order.go index 4308508..22d8181 100644 --- a/r4/core/resources/nutritionorder/nutrition_order.go +++ b/r4/core/resources/nutritionorder/nutrition_order.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/observation/observation.go b/r4/core/resources/observation/observation.go index 5ff26a6..9191977 100644 --- a/r4/core/resources/observation/observation.go +++ b/r4/core/resources/observation/observation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/observationdefinition/observation_definition.go b/r4/core/resources/observationdefinition/observation_definition.go index 58c0e54..e148210 100644 --- a/r4/core/resources/observationdefinition/observation_definition.go +++ b/r4/core/resources/observationdefinition/observation_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/operationdefinition/operation_definition.go b/r4/core/resources/operationdefinition/operation_definition.go index 6c008c3..b1ffb21 100644 --- a/r4/core/resources/operationdefinition/operation_definition.go +++ b/r4/core/resources/operationdefinition/operation_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/operationoutcome/operation_outcome.go b/r4/core/resources/operationoutcome/operation_outcome.go index c9e40ed..0b6e838 100644 --- a/r4/core/resources/operationoutcome/operation_outcome.go +++ b/r4/core/resources/operationoutcome/operation_outcome.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/organization/organization.go b/r4/core/resources/organization/organization.go index 0ffa9a3..932f0ff 100644 --- a/r4/core/resources/organization/organization.go +++ b/r4/core/resources/organization/organization.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/organizationaffiliation/organization_affiliation.go b/r4/core/resources/organizationaffiliation/organization_affiliation.go index 39d2e79..e121fdb 100644 --- a/r4/core/resources/organizationaffiliation/organization_affiliation.go +++ b/r4/core/resources/organizationaffiliation/organization_affiliation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/parameters/parameters.go b/r4/core/resources/parameters/parameters.go index b7017e9..10e38d7 100644 --- a/r4/core/resources/parameters/parameters.go +++ b/r4/core/resources/parameters/parameters.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/patient/patient.go b/r4/core/resources/patient/patient.go index 42025f6..af30b15 100644 --- a/r4/core/resources/patient/patient.go +++ b/r4/core/resources/patient/patient.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/paymentnotice/payment_notice.go b/r4/core/resources/paymentnotice/payment_notice.go index 1bf0d30..4e909ea 100644 --- a/r4/core/resources/paymentnotice/payment_notice.go +++ b/r4/core/resources/paymentnotice/payment_notice.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/paymentreconciliation/payment_reconciliation.go b/r4/core/resources/paymentreconciliation/payment_reconciliation.go index 336f5e6..0751cd9 100644 --- a/r4/core/resources/paymentreconciliation/payment_reconciliation.go +++ b/r4/core/resources/paymentreconciliation/payment_reconciliation.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/person/person.go b/r4/core/resources/person/person.go index edcfa1a..a52547c 100644 --- a/r4/core/resources/person/person.go +++ b/r4/core/resources/person/person.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/plandefinition/plan_definition.go b/r4/core/resources/plandefinition/plan_definition.go index 0a47e12..8d42c36 100644 --- a/r4/core/resources/plandefinition/plan_definition.go +++ b/r4/core/resources/plandefinition/plan_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/practitioner/practitioner.go b/r4/core/resources/practitioner/practitioner.go index eee049e..dca546d 100644 --- a/r4/core/resources/practitioner/practitioner.go +++ b/r4/core/resources/practitioner/practitioner.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/practitionerrole/practitioner_role.go b/r4/core/resources/practitionerrole/practitioner_role.go index 08d3ea2..356f4ff 100644 --- a/r4/core/resources/practitionerrole/practitioner_role.go +++ b/r4/core/resources/practitionerrole/practitioner_role.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/procedure/procedure.go b/r4/core/resources/procedure/procedure.go index 97f6eb2..3295807 100644 --- a/r4/core/resources/procedure/procedure.go +++ b/r4/core/resources/procedure/procedure.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/provenance/provenance.go b/r4/core/resources/provenance/provenance.go index 41b7ba7..ec25a4a 100644 --- a/r4/core/resources/provenance/provenance.go +++ b/r4/core/resources/provenance/provenance.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/questionnaire/questionnaire.go b/r4/core/resources/questionnaire/questionnaire.go index 6d9a84d..1f58bfb 100644 --- a/r4/core/resources/questionnaire/questionnaire.go +++ b/r4/core/resources/questionnaire/questionnaire.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/questionnaireresponse/questionnaire_response.go b/r4/core/resources/questionnaireresponse/questionnaire_response.go index d03eeeb..940bd48 100644 --- a/r4/core/resources/questionnaireresponse/questionnaire_response.go +++ b/r4/core/resources/questionnaireresponse/questionnaire_response.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/relatedperson/related_person.go b/r4/core/resources/relatedperson/related_person.go index 3ba0af6..306c6cf 100644 --- a/r4/core/resources/relatedperson/related_person.go +++ b/r4/core/resources/relatedperson/related_person.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/requestgroup/request_group.go b/r4/core/resources/requestgroup/request_group.go index f0a450b..e4ad61f 100644 --- a/r4/core/resources/requestgroup/request_group.go +++ b/r4/core/resources/requestgroup/request_group.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/researchdefinition/research_definition.go b/r4/core/resources/researchdefinition/research_definition.go index c5cd7db..410bfc0 100644 --- a/r4/core/resources/researchdefinition/research_definition.go +++ b/r4/core/resources/researchdefinition/research_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/researchelementdefinition/research_element_definition.go b/r4/core/resources/researchelementdefinition/research_element_definition.go index 40c3cfc..8bba485 100644 --- a/r4/core/resources/researchelementdefinition/research_element_definition.go +++ b/r4/core/resources/researchelementdefinition/research_element_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/researchstudy/research_study.go b/r4/core/resources/researchstudy/research_study.go index b57c41e..9f8f362 100644 --- a/r4/core/resources/researchstudy/research_study.go +++ b/r4/core/resources/researchstudy/research_study.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/researchsubject/research_subject.go b/r4/core/resources/researchsubject/research_subject.go index b563b5f..4ac0764 100644 --- a/r4/core/resources/researchsubject/research_subject.go +++ b/r4/core/resources/researchsubject/research_subject.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/riskassessment/risk_assessment.go b/r4/core/resources/riskassessment/risk_assessment.go index be8b90a..c1401b6 100644 --- a/r4/core/resources/riskassessment/risk_assessment.go +++ b/r4/core/resources/riskassessment/risk_assessment.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/riskevidencesynthesis/risk_evidence_synthesis.go b/r4/core/resources/riskevidencesynthesis/risk_evidence_synthesis.go index 2016588..5b81056 100644 --- a/r4/core/resources/riskevidencesynthesis/risk_evidence_synthesis.go +++ b/r4/core/resources/riskevidencesynthesis/risk_evidence_synthesis.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/schedule/schedule.go b/r4/core/resources/schedule/schedule.go index a16109a..d0e62ba 100644 --- a/r4/core/resources/schedule/schedule.go +++ b/r4/core/resources/schedule/schedule.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/searchparameter/search_parameter.go b/r4/core/resources/searchparameter/search_parameter.go index a89412d..f2ff5f0 100644 --- a/r4/core/resources/searchparameter/search_parameter.go +++ b/r4/core/resources/searchparameter/search_parameter.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/servicerequest/service_request.go b/r4/core/resources/servicerequest/service_request.go index f655a46..f542715 100644 --- a/r4/core/resources/servicerequest/service_request.go +++ b/r4/core/resources/servicerequest/service_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/slot/slot.go b/r4/core/resources/slot/slot.go index 02c022d..a7fcd12 100644 --- a/r4/core/resources/slot/slot.go +++ b/r4/core/resources/slot/slot.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/specimen/specimen.go b/r4/core/resources/specimen/specimen.go index 59270c0..e138481 100644 --- a/r4/core/resources/specimen/specimen.go +++ b/r4/core/resources/specimen/specimen.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/specimendefinition/specimen_definition.go b/r4/core/resources/specimendefinition/specimen_definition.go index 90b8e0f..0c45bfa 100644 --- a/r4/core/resources/specimendefinition/specimen_definition.go +++ b/r4/core/resources/specimendefinition/specimen_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/structuredefinition/structure_definition.go b/r4/core/resources/structuredefinition/structure_definition.go index a483d00..4ee23e5 100644 --- a/r4/core/resources/structuredefinition/structure_definition.go +++ b/r4/core/resources/structuredefinition/structure_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/structuremap/structure_map.go b/r4/core/resources/structuremap/structure_map.go index 27ac865..cff85e1 100644 --- a/r4/core/resources/structuremap/structure_map.go +++ b/r4/core/resources/structuremap/structure_map.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/subscription/subscription.go b/r4/core/resources/subscription/subscription.go index 530cebc..906311e 100644 --- a/r4/core/resources/subscription/subscription.go +++ b/r4/core/resources/subscription/subscription.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substance/substance.go b/r4/core/resources/substance/substance.go index c3b84e9..7d97556 100644 --- a/r4/core/resources/substance/substance.go +++ b/r4/core/resources/substance/substance.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substancenucleicacid/substance_nucleic_acid.go b/r4/core/resources/substancenucleicacid/substance_nucleic_acid.go index ada449f..0981edc 100644 --- a/r4/core/resources/substancenucleicacid/substance_nucleic_acid.go +++ b/r4/core/resources/substancenucleicacid/substance_nucleic_acid.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substancepolymer/substance_polymer.go b/r4/core/resources/substancepolymer/substance_polymer.go index bb40825..2cb91d3 100644 --- a/r4/core/resources/substancepolymer/substance_polymer.go +++ b/r4/core/resources/substancepolymer/substance_polymer.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substanceprotein/substance_protein.go b/r4/core/resources/substanceprotein/substance_protein.go index f7b0c72..44d25ac 100644 --- a/r4/core/resources/substanceprotein/substance_protein.go +++ b/r4/core/resources/substanceprotein/substance_protein.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substancereferenceinformation/substance_reference_information.go b/r4/core/resources/substancereferenceinformation/substance_reference_information.go index ccc628d..12277f6 100644 --- a/r4/core/resources/substancereferenceinformation/substance_reference_information.go +++ b/r4/core/resources/substancereferenceinformation/substance_reference_information.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substancesourcematerial/substance_source_material.go b/r4/core/resources/substancesourcematerial/substance_source_material.go index d52b3f6..2220148 100644 --- a/r4/core/resources/substancesourcematerial/substance_source_material.go +++ b/r4/core/resources/substancesourcematerial/substance_source_material.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/substancespecification/substance_specification.go b/r4/core/resources/substancespecification/substance_specification.go index d81ed78..31ba66a 100644 --- a/r4/core/resources/substancespecification/substance_specification.go +++ b/r4/core/resources/substancespecification/substance_specification.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/supplydelivery/supply_delivery.go b/r4/core/resources/supplydelivery/supply_delivery.go index 05b0cd5..a60e670 100644 --- a/r4/core/resources/supplydelivery/supply_delivery.go +++ b/r4/core/resources/supplydelivery/supply_delivery.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/supplyrequest/supply_request.go b/r4/core/resources/supplyrequest/supply_request.go index 9d4c544..e71983e 100644 --- a/r4/core/resources/supplyrequest/supply_request.go +++ b/r4/core/resources/supplyrequest/supply_request.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/task/task.go b/r4/core/resources/task/task.go index 35e9054..be87add 100644 --- a/r4/core/resources/task/task.go +++ b/r4/core/resources/task/task.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/terminologycapabilities/terminology_capabilities.go b/r4/core/resources/terminologycapabilities/terminology_capabilities.go index 1e9c357..d79d46d 100644 --- a/r4/core/resources/terminologycapabilities/terminology_capabilities.go +++ b/r4/core/resources/terminologycapabilities/terminology_capabilities.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/testreport/test_report.go b/r4/core/resources/testreport/test_report.go index af4667f..847ad54 100644 --- a/r4/core/resources/testreport/test_report.go +++ b/r4/core/resources/testreport/test_report.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/testscript/test_script.go b/r4/core/resources/testscript/test_script.go index 56b54e5..685e304 100644 --- a/r4/core/resources/testscript/test_script.go +++ b/r4/core/resources/testscript/test_script.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/valueset/value_set.go b/r4/core/resources/valueset/value_set.go index 29075ba..38be5aa 100644 --- a/r4/core/resources/valueset/value_set.go +++ b/r4/core/resources/valueset/value_set.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/verificationresult/verification_result.go b/r4/core/resources/verificationresult/verification_result.go index 959af35..b6600b0 100644 --- a/r4/core/resources/verificationresult/verification_result.go +++ b/r4/core/resources/verificationresult/verification_result.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/resources/visionprescription/vision_prescription.go b/r4/core/resources/visionprescription/vision_prescription.go index e3d8741..916cd04 100644 --- a/r4/core/resources/visionprescription/vision_prescription.go +++ b/r4/core/resources/visionprescription/vision_prescription.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/sampled_data.go b/r4/core/sampled_data.go index fb1ee8c..ac6c740 100644 --- a/r4/core/sampled_data.go +++ b/r4/core/sampled_data.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/signature.go b/r4/core/signature.go index f0c57e0..1a9eb41 100644 --- a/r4/core/signature.go +++ b/r4/core/signature.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/string.go b/r4/core/string.go index ee6cc4e..ec0e205 100644 --- a/r4/core/string.go +++ b/r4/core/string.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/substance_amount.go b/r4/core/substance_amount.go index 1d9d749..5ceb9df 100644 --- a/r4/core/substance_amount.go +++ b/r4/core/substance_amount.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/time.go b/r4/core/time.go index f908932..01781d5 100644 --- a/r4/core/time.go +++ b/r4/core/time.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/timing.go b/r4/core/timing.go index 71d70f5..fd1a284 100644 --- a/r4/core/timing.go +++ b/r4/core/timing.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/trigger_definition.go b/r4/core/trigger_definition.go index f231ce6..599dbd3 100644 --- a/r4/core/trigger_definition.go +++ b/r4/core/trigger_definition.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/unsigned_int.go b/r4/core/unsigned_int.go index f28b72e..67ff707 100644 --- a/r4/core/unsigned_int.go +++ b/r4/core/unsigned_int.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/uri.go b/r4/core/uri.go index 490f5f6..9e3c0c3 100644 --- a/r4/core/uri.go +++ b/r4/core/uri.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/url.go b/r4/core/url.go index e4ae0c3..26999bb 100644 --- a/r4/core/url.go +++ b/r4/core/url.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/usage_context.go b/r4/core/usage_context.go index 771533d..a2ad42e 100644 --- a/r4/core/usage_context.go +++ b/r4/core/usage_context.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/uuid.go b/r4/core/uuid.go index e80a794..fe0eef3 100644 --- a/r4/core/uuid.go +++ b/r4/core/uuid.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix. diff --git a/r4/core/xhtml.go b/r4/core/xhtml.go index c432fa1..69c54af 100644 --- a/r4/core/xhtml.go +++ b/r4/core/xhtml.go @@ -1,4 +1,4 @@ -// GENERATE CODE - DO NOT EDIT +// GENERATED CODE - DO NOT EDIT // // This file is generated by the FHIR Fhenix code generator tool, which can be // located at https://github.com/friendly-fhir/fhenix.