class PagSeguro::Installment
Attributes
quantity[RW]
Set the total of installments
value[RW]
Set the installment value.
Public Class Methods
new(quantity, value)
click to toggle source
# File lib/pagseguro/installment.rb, line 12 def initialize(quantity, value) @quantity = quantity @value = value end