Sha256: 5ea55a07ebecad09216cca7d6c2d06fb8bcdfbfcb056d84234822b7621f3bd5a
Contents?: true
Size: 898 Bytes
Versions: 1
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 [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", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/bank_account.rb |