lib/openactive/models/schema/bank_account.rb in openactive-0.2.2 vs lib/openactive/models/schema/bank_account.rb in openactive-0.3.0

- old
+ new

@@ -6,25 +6,25 @@ # @return [String] def type "schema:BankAccount" end + # @return [String,URI] + define_property :bank_account_type, as: "bankAccountType", types: [ + "string", + "URI", + ] + # @return [OpenActive::Models::Schema::MonetaryAmount,URI] define_property :account_minimum_inflow, as: "accountMinimumInflow", types: [ "OpenActive::Models::Schema::MonetaryAmount", "URI", ] # @return [OpenActive::Models::Schema::MonetaryAmount,URI] define_property :account_overdraft_limit, as: "accountOverdraftLimit", types: [ "OpenActive::Models::Schema::MonetaryAmount", "URI", - ] - - # @return [URI,String] - define_property :bank_account_type, as: "bankAccountType", types: [ - "URI", - "string", ] end end end end