Sha256: 4b54bde0628921fc31d2f33fe25183dc6d3d316853b0b295095afb82faf9aa5c
Contents?: true
Size: 836 Bytes
Versions: 11
Compression:
Stored size: 836 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::Models::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
11 entries across 11 versions & 1 rubygems