Class: CorePro::Models::ProgramLimit

Inherits:
JsonBase
  • Object
show all
Defined in:
lib/corepro/models/program_limit.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from JsonBase

#from_json!, #is_hash?, #to_hash, #to_json

Instance Attribute Details

#maximumAmountObject

Returns the value of attribute maximumAmount.



6
7
8
# File 'lib/corepro/models/program_limit.rb', line 6

def maximumAmount
  @maximumAmount
end

#minimumAmountObject

Returns the value of attribute minimumAmount.



5
6
7
# File 'lib/corepro/models/program_limit.rb', line 5

def minimumAmount
  @minimumAmount
end

Instance Method Details

#to_sObject



7
8
9
# File 'lib/corepro/models/program_limit.rb', line 7

def to_s
  return "min: #{@minimumAmount}, max: #{@maximumAmount}"
end