Sha256: b0b6d6ee9c6b0424616871d835f8dec898278215032463d1bb8c79ff78c9d96f
Contents?: true
Size: 1004 Bytes
Versions: 1
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 [DateTime,Date,nil] define_property :start_date, as: "startDate", types: [ "DateTime", "Date", "null", ] # @return [Date,DateTime,nil] define_property :end_date, as: "endDate", types: [ "Date", "DateTime", "null", ] # @return [String] define_property :currency, as: "currency", types: [ "string", ] # @return [BigDecimal,OpenActive::Models::Schema::MonetaryAmount,URI,nil] define_property :amount, as: "amount", types: [ "Number", "OpenActive::Models::Schema::MonetaryAmount", "URI", "null", ] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.3.0 | lib/openactive/models/schema/dated_money_specification.rb |