Sha256: aae25d9935ecf991b10902a46974bb54c777dac978c6fda8d6de03fe3443fbc9

Contents?: true

Size: 271 Bytes

Versions: 8

Compression:

Stored size: 271 Bytes

Contents

require_relative 'json_base'
module CorePro
  module Models
    class ProgramLimit < JsonBase
      attr_accessor :minimumAmount
      attr_accessor :maximumAmount
      def to_s
        return "min: #{@minimumAmount}, max: #{@maximumAmount}"
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
corepro_fvr-1.0.9 lib/corepro/models/program_limit.rb
corepro_eg-1.0.8 lib/corepro/models/program_limit.rb
corepro_eg-1.0.7 lib/corepro/models/program_limit.rb
corepro_eg-1.0.6 lib/corepro/models/program_limit.rb
corepro_eg-1.0.5 lib/corepro/models/program_limit.rb
corepro_eg-1.0.4 lib/corepro/models/program_limit.rb
corepro_eg-1.0.3 lib/corepro/models/program_limit.rb
corepro_eg-1.0.2 lib/corepro/models/program_limit.rb