Sha256: 171ba5fb6c0e4ded0c316f92397d91161ad4b8fe0fe2482d50831c89ad7d6bbc

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

require 'typesafe_enum'

module OpenActive
  module Enums
    module Schema
      # A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\n* http://purl.org/goodrelations/v1#DeliveryModeMail\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\n* http://purl.org/goodrelations/v1#DHL\n* http://purl.org/goodrelations/v1#FederalExpress\n* http://purl.org/goodrelations/v1#UPS
      #
      class DeliveryMethod < TypesafeEnum::Base
        new :ParcelService, "https://schema.org/ParcelService"
        new :OnSitePickup, "https://schema.org/OnSitePickup"
        new :LockerDelivery, "https://schema.org/LockerDelivery"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openactive-0.3.0 lib/openactive/enums/schema/delivery_method.rb