Sha256: 293c8c719884cbbbb1337e0c9d34f43d912377db8f12ad2d56afa20d477e3890
Contents?: true
Size: 997 Bytes
Versions: 2
Compression:
Stored size: 997 Bytes
Contents
module OpenActive module Models module Schema class LocalBusiness < ::OpenActive::Models::Schema::Organization # @!attribute type # @return [String] def type "schema:LocalBusiness" end # @return [String] define_property :payment_accepted, as: "paymentAccepted", types: [ "string", ] # @return [String] define_property :opening_hours, as: "openingHours", types: [ "string", ] # @return [String] define_property :price_range, as: "priceRange", types: [ "string", ] # @return [String] define_property :currencies_accepted, as: "currenciesAccepted", types: [ "string", ] # @return [OpenActive::Models::Schema::Organization,URI] define_property :branch_of, as: "branchOf", types: [ "OpenActive::Models::Schema::Organization", "URI", ] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/models/schema/local_business.rb |
openactive-0.4.0 | lib/openactive/models/schema/local_business.rb |