module Eddy module Elements # ### Element Summary: # # - Id: 455 # - Name: Responsible Agency Code # - Type: ID # - Min/Max: 1/2 # - Description: Code used in conjunction with Data Element 480 to identify the issuer of the standard # # ### Notes: # # - Default value: `"X"` class E455 < Eddy::Element::ID # @param val [String] ("X") # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: "X", req: nil, ref: nil) @id = "455" @name = "Responsible Agency Code" @description = "Code used in conjunction with Data Element 480 to identify the issuer of the standard" super( min: 1, max: 2, req: req, ref: ref, val: val, ) end # @return [Array] def code_list() return [ "T", # Transportation Data Coordinating Committee (TDCC) "X", # Accredited Standards Committee X12 ] end end end end