Sha256: bf78a88d1f8f52450e992743151f661519010af97c31ea9cadd978de41b6699c

Contents?: true

Size: 803 Bytes

Versions: 4

Compression:

Stored size: 803 Bytes

Contents

module Eddy
  module Elements
    # ### Element Summary:
    #
    # - Id: 96
    # - Name: Number of Included Segments
    # - Type: N0
    # - Min/Max: 1/10
    # - Description: Total number of segments included in a transaction set including ST and SE segments
    class E96 < Eddy::Element::N
      # @param val [Integer]
      # @param req [String]
      # @param ref [String]
      # @return [void]
      def initialize(val: nil, req: nil, ref: nil)
        @id = "96"
        @name = "Number of Included Segments"
        @description = "Total number of segments included in a transaction set including ST and SE segments"
        super(
          min: 1,
          max: 10,
          req: req,
          ref: ref,
          val: val,
          decimals: 0,
        )
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
eddy-0.5.1 lib/definitions/elements/manual/96.number_of_included_segments.rb
eddy-0.5.0 lib/definitions/elements/manual/96.number_of_included_segments.rb
eddy-0.4.0 lib/definitions/elements/manual/96.number_of_included_segments.rb
eddy-0.3.0 lib/definitions/elements/manual/96.number_of_included_segments.rb