Sha256: 6bd3635afa4ceb9517fb9cc707b95128dbf9a35d133eef89e9157181ce784316
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
module OpenActive module Models module Schema class FinancialProduct < ::OpenActive::Models::Schema::Service # @!attribute type # @return [String] def type "schema:FinancialProduct" end # @return [OpenActive::Models::Schema::QuantitativeValue,BigDecimal,URI,nil] define_property :interest_rate, as: "interestRate", types: [ "OpenActive::Models::Schema::QuantitativeValue", "Number", "URI", "null", ] # @return [String,URI] define_property :fees_and_commissions_specification, as: "feesAndCommissionsSpecification", types: [ "string", "URI", ] # @return [BigDecimal,OpenActive::Models::Schema::QuantitativeValue,URI,nil] define_property :annual_percentage_rate, as: "annualPercentageRate", types: [ "Number", "OpenActive::Models::Schema::QuantitativeValue", "URI", "null", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/financial_product.rb |
openactive-0.4.0 | lib/openactive/models/schema/financial_product.rb |