Sha256: 986b48af017a7ac229603a392e82689723796b1259e71eac727ef39c795ca830
Contents?: true
Size: 1.57 KB
Versions: 2
Compression:
Stored size: 1.57 KB
Contents
module OpenActive module Models module Schema class DeliveryChargeSpecification < ::OpenActive::Models::Schema::PriceSpecification # @!attribute type # @return [String] def type "schema:DeliveryChargeSpecification" end # @return [OpenActive::Enums::Schema::DeliveryMethod,nil] define_property :applies_to_delivery_method, as: "appliesToDeliveryMethod", types: [ "OpenActive::Enums::Schema::DeliveryMethod", "null", ] # @return [String,OpenActive::Models::Schema::Place,OpenActive::Models::Schema::GeoShape,URI] define_property :ineligible_region, as: "ineligibleRegion", types: [ "string", "OpenActive::Models::Schema::Place", "OpenActive::Models::Schema::GeoShape", "URI", ] # @return [OpenActive::Models::Schema::GeoShape,String,OpenActive::Models::Schema::Place,URI] define_property :eligible_region, as: "eligibleRegion", types: [ "OpenActive::Models::Schema::GeoShape", "string", "OpenActive::Models::Schema::Place", "URI", ] # @return [String,OpenActive::Models::Schema::Place,OpenActive::Models::Schema::GeoShape,OpenActive::Models::Schema::AdministrativeArea,URI] define_property :area_served, as: "areaServed", types: [ "string", "OpenActive::Models::Schema::Place", "OpenActive::Models::Schema::GeoShape", "OpenActive::Models::Schema::AdministrativeArea", "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/delivery_charge_specification.rb |
openactive-0.4.0 | lib/openactive/models/schema/delivery_charge_specification.rb |