Sha256: 0bb2554280131c864dbabee1184a00ae93eb4cd2dc1f809f51479e220d1a8c3a
Contents?: true
Size: 949 Bytes
Versions: 2
Compression:
Stored size: 949 Bytes
Contents
module OpenActive module Models module Schema class ExchangeRateSpecification < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:ExchangeRateSpecification" end # @return [OpenActive::Models::Schema::UnitPriceSpecification,URI] define_property :current_exchange_rate, as: "currentExchangeRate", types: [ "OpenActive::Models::Schema::UnitPriceSpecification", "URI", ] # @return [String] define_property :currency, as: "currency", types: [ "string", ] # @return [OpenActive::Models::Schema::MonetaryAmount,BigDecimal,URI,nil] define_property :exchange_rate_spread, as: "exchangeRateSpread", types: [ "OpenActive::Models::Schema::MonetaryAmount", "Number", "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/exchange_rate_specification.rb |
openactive-0.4.0 | lib/openactive/models/schema/exchange_rate_specification.rb |