Sha256: b11df9674415a76988abc86721062652ad77866e95b4047e436fba2174daf095
Contents?: true
Size: 898 Bytes
Versions: 2
Compression:
Stored size: 898 Bytes
Contents
module OpenActive module Models module Schema class BankAccount < ::OpenActive::Models::Schema::FinancialProduct # @!attribute type # @return [String] def type "schema:BankAccount" end # @return [OpenActive::Models::Schema::MonetaryAmount,URI] define_property :account_minimum_inflow, as: "accountMinimumInflow", types: [ "OpenActive::Models::Schema::MonetaryAmount", "URI", ] # @return [URI,String] define_property :bank_account_type, as: "bankAccountType", types: [ "URI", "string", ] # @return [OpenActive::Models::Schema::MonetaryAmount,URI] define_property :account_overdraft_limit, as: "accountOverdraftLimit", types: [ "OpenActive::Models::Schema::MonetaryAmount", "URI", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/bank_account.rb |
openactive-0.4.0 | lib/openactive/models/schema/bank_account.rb |