class Eddy::Elements::I15
### Element Summary:
-
Id:
I15
-
Name: Component Element Separator
-
Type: N/A (Type is not applicable (*but it's functionally AN*))
-
Min/Max: 1/1
-
Description:
-
The component element separator is a delimiter and not a data element.
-
This field provides the delimiter used to separate component data elements within a composite data structure.
-
This value must be different than the data element separator and the segment terminator.
-
### Notes:
-
Default value: `“>”`
Public Class Methods
new(val: ">", req: nil, ref: nil)
click to toggle source
@param val [String] (“>”) @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::AN::new
# File lib/definitions/elements/manual/i/I15.component_element_separator.rb, line 22 def initialize(val: ">", req: nil, ref: nil) @id = "I15" @name = "Component Element Separator" @description = "The delimiter used to separate component data elements within a composite data structure." super( min: 1, max: 1, req: req, ref: ref, val: val, ) end