Sha256: 8df944e0b12ecccc0dcd8980658fa5a6e076f39485592f1d6b05e733ccbc2150
Contents?: true
Size: 791 Bytes
Versions: 4
Compression:
Stored size: 791 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 142 # - Name: Application Sender's Code # - Type: AN # - Min/Max: 2/15 # - Description: Code identifying party sending transmission; codes agreed to by trading partners class E142 < Eddy::Element::AN # @param val [String] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "142" @name = "Application Sender's Code" @description = "Code identifying party sending transmission; codes agreed to by trading partners" super( min: 2, max: 15, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems