Sha256: b6165e857d73054c854a61d594d2d7568075d5b1538efbd0d80324cea883a03e
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
module Eddy module Elements # ### Element Summary: # # - Id: I04 # - Name: Security Information # - Type: AN # - Min/Max: 10/10 # - Description: This is used for identifying the security information about the interchange sender or the data in the interchange; the type of information is set by the Security Information Qualifier (`I03`) # # ### Notes: # # - By default, this element's value is just 10 empty spaces. class I04 < Eddy::Element::AN # @param val [String] (" ") # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: (" " * 10), req: nil, ref: nil) @id = "I04" @name = "Security Information" @description = "This is used for identifying the security information about the interchange sender or the data in the interchange; the type of information is set by the Security Information Qualifier (`I03`)" super( min: 10, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems