Sha256: 6cb729f2d7dc591f68f432be0f8e9b89c790dd5f89a17584bc3cd18e083ffb57
Contents?: true
Size: 823 Bytes
Versions: 4
Compression:
Stored size: 823 Bytes
Contents
module Eddy module Segments # ### Segment Summary: # # - Id: N3 # - Name: Address Information # - Purpose: To specify the location of the named party class N3 < Eddy::Segment # @param store [Eddy::Data::Store] # @return [void] def initialize(store) @id = "N3" @name = "Address Information" @n301 = Eddy::Elements::E166.new(ref: "N301", req: "M") super( store, @n301, ) end # ### N301 # # - Id: 166 # - Name: Address Information # - Type: AN # - Min/Max: 1/55 # - Description: Address information # # @param arg [String] # @return [void] def N301=(arg) @n301.value = arg end alias AddressInformation= N301= end end end
Version data entries
4 entries across 4 versions & 1 rubygems