lib/definitions/segments/generated/ref.rb in eddy-0.8.4 vs lib/definitions/segments/generated/ref.rb in eddy-0.9.0
- old
+ new
@@ -12,14 +12,16 @@
def initialize(store)
@id = "REF"
@name = "Reference Identification"
@ref01 = Eddy::Elements::E128.new(ref: "REF01", req: "M")
@ref02 = Eddy::Elements::E127.new(ref: "REF02", req: "X")
+ @ref03 = Eddy::Elements::E352.new(ref: "REF03", req: "X")
super(
store,
@ref01,
@ref02,
+ @ref03,
)
end
# ### REF01
#
@@ -48,9 +50,24 @@
# @return [void]
def REF02=(arg)
@ref02.value = arg
end
alias ReferenceIdentification= REF02=
+
+ # ### REF03
+ #
+ # - Id: 352
+ # - Name: Description
+ # - Type: AN
+ # - Min/Max: 1/80
+ # - Description: A free-form description to clarify the related data elements and their content
+ #
+ # @param arg [String]
+ # @return [void]
+ def REF03=(arg)
+ @ref03.value = arg
+ end
+ alias Description= REF03=
end
end
end