Sha256: e948e644d4c1d385267c7a0e2701040d1bed6659f5c53560fceec207ae5cd84b
Contents?: true
Size: 828 Bytes
Versions: 4
Compression:
Stored size: 828 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 1301 # - Name: Agency Service, Promotion, Allowance, or Charge Code # - Type: AN # - Min/Max: 1/10 # - Description: Agency maintained code identifying the service, promotion, allowance, or charge class E1301 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "1301" @name = "Agency Service, Promotion, Allowance, or Charge Code" @description = "Agency maintained code identifying the service, promotion, allowance, or charge" super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems