lib/openactive/models/schema/repayment_specification.rb in openactive-0.3.0 vs lib/openactive/models/schema/repayment_specification.rb in openactive-0.4.0

- old
+ new

@@ -6,13 +6,15 @@ # @return [String] def type "schema:RepaymentSpecification" end - # @return [BigDecimal,nil] - define_property :number_of_loan_payments, as: "numberOfLoanPayments", types: [ + # @return [BigDecimal,OpenActive::Models::Schema::MonetaryAmount,URI,nil] + define_property :down_payment, as: "downPayment", types: [ "Number", + "OpenActive::Models::Schema::MonetaryAmount", + "URI", "null", ] # @return [OpenActive::Models::Schema::MonetaryAmount,URI] define_property :early_prepayment_penalty, as: "earlyPrepaymentPenalty", types: [ @@ -25,19 +27,17 @@ "OpenActive::Models::Schema::MonetaryAmount", "URI", ] # @return [BigDecimal,nil] - define_property :loan_payment_frequency, as: "loanPaymentFrequency", types: [ + define_property :number_of_loan_payments, as: "numberOfLoanPayments", types: [ "Number", "null", ] - # @return [BigDecimal,OpenActive::Models::Schema::MonetaryAmount,URI,nil] - define_property :down_payment, as: "downPayment", types: [ + # @return [BigDecimal,nil] + define_property :loan_payment_frequency, as: "loanPaymentFrequency", types: [ "Number", - "OpenActive::Models::Schema::MonetaryAmount", - "URI", "null", ] end end end