Sha256: 416859b9108b7f47f3345b48c2605f4434919c09f47daa4def41a51fdaa62b74
Contents?: true
Size: 1004 Bytes
Versions: 2
Compression:
Stored size: 1004 Bytes
Contents
module OpenActive module Models module Schema class DatedMoneySpecification < ::OpenActive::Models::Schema::StructuredValue # @!attribute type # @return [String] def type "schema:DatedMoneySpecification" end # @return [String] define_property :currency, as: "currency", types: [ "string", ] # @return [Date,DateTime,nil] define_property :start_date, as: "startDate", types: [ "Date", "DateTime", "null", ] # @return [OpenActive::Models::Schema::MonetaryAmount,BigDecimal,URI,nil] define_property :amount, as: "amount", types: [ "OpenActive::Models::Schema::MonetaryAmount", "Number", "URI", "null", ] # @return [Date,DateTime,nil] define_property :end_date, as: "endDate", types: [ "Date", "DateTime", "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/dated_money_specification.rb |
openactive-0.4.0 | lib/openactive/models/schema/dated_money_specification.rb |