Sha256: da0902b3d838b84a9edb1cb6a4a373abf1d6ee2723a04964ae25080379033bf2
Contents?: true
Size: 1.33 KB
Versions: 11
Compression:
Stored size: 1.33 KB
Contents
module Eddy module Elements # ### Element Summary: # # - Id: I01 # - Name: Authorization Information Qualifier # - Type: ID # - Min/Max: 2/2 # - Description: Code to identify the type of information in the Authorization Information # # ### Notes: # # - Default value: `"00"` class I01 < Eddy::Models::Element::ID # @param val [String] ("00") # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: "00", req: nil, ref: nil) @id = "I01" @name = "Authorization Information Qualifier" @description = "Code to identify the type of information in the Authorization Information" super( min: 2, max: 2, req: req, ref: ref, val: val, ) end # @return [Array<String>] def code_list() return [ "00", # No Authorization Information Present (No Meaningful Information in I02) "01", # UCS Communications ID "02", # EDX Communications ID "03", # Additional Data Identification "04", # Rail Communications ID "05", # Department of Defense (DoD) Communication Identifier "06", # United States Federal Government Communication Identifier ] end end end end
Version data entries
11 entries across 11 versions & 1 rubygems