Class: CorePro::Models::ProgramLimit
- Defined in:
- lib/corepro/models/program_limit.rb
Instance Attribute Summary collapse
-
#maximumAmount ⇒ Object
Returns the value of attribute maximumAmount.
-
#minimumAmount ⇒ Object
Returns the value of attribute minimumAmount.
Instance Method Summary collapse
Methods inherited from JsonBase
#from_json!, #is_hash?, #to_hash, #to_json
Instance Attribute Details
#maximumAmount ⇒ Object
Returns the value of attribute maximumAmount.
6 7 8 |
# File 'lib/corepro/models/program_limit.rb', line 6 def maximumAmount @maximumAmount end |
#minimumAmount ⇒ Object
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_s ⇒ Object
7 8 9 |
# File 'lib/corepro/models/program_limit.rb', line 7 def to_s return "min: #{@minimumAmount}, max: #{@maximumAmount}" end |