Sha256: 4be3b632eefe68902c629abb4db83eb95858bc1175519b6c296438c1f4319879
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
module Eddy module Elements # ### Element Summary: # # - Id: I10 # - Name: Interchange Control Standards Identifier # - Type: 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"`) class I10 < Eddy::Element::ID # @param val [String] ("U") # @param req [String] (nil) # @param ref [String] (nil) # @return [void] 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 # @return [Array<String>] def code_list() return [ "U", # U.S. EDI Community of ASC X12, TDCC, and UCS ] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems