Sha256: 69179164545a4ac0b47390d6f52ab5ce3c57fcdf1619327eae99df09c3784c3f
Contents?: true
Size: 1.09 KB
Versions: 5
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 :OnSitePickup, "https://schema.org/OnSitePickup" new :LockerDelivery, "https://schema.org/LockerDelivery" new :ParcelService, "https://schema.org/ParcelService" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems