Sha256: fad69f3df2b826f0e4bd8a295103e777a09e4e8fbb5ace388b887a1bdd33458f
Contents?: true
Size: 831 Bytes
Versions: 1
Compression:
Stored size: 831 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::Models::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eddy-0.6.0 | lib/definitions/segments/generated/n3.rb |