class Eddy::Elements::I10

### Element Summary:

### Notes:

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