class Eddy::Elements::I10
### Element Summary:
-
Id:
I10
-
Name: Interchange Control Standards Identifier
-
Type: AN (Should be ID)
-
Min/Max: 1/1
-
Description: Code to identify the agency responsible for the control standard used by the message that is enclosed by the interchange header and trailer
### Notes:
-
(Default value: `āUā`)
Public Class Methods
new(val: "U", req: nil, ref: nil)
click to toggle source
@param val [String] (āUā) @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::AN::new
# File lib/definitions/elements/manual/i/I10.interchange_control_standards_identifier.rb, line 20 def initialize(val: "U", req: nil, ref: nil) @id = "I10" @name = "Interchange Control Standards Identifier" @description = "Code to identify the agency responsible for the control standard used by the message that is enclosed by the interchange header and trailer" super( min: 1, max: 1, req: req, ref: ref, val: val, ) end
Public Instance Methods
code_list()
click to toggle source
@return [Array<String>]
# File lib/definitions/elements/manual/i/I10.interchange_control_standards_identifier.rb, line 34 def code_list() return [ "U", # U.S. EDI Community of ASC X12, TDCC, and UCS ] end