lib/openactive/enums/schema/delivery_method.rb in openactive-0.1.2 vs lib/openactive/enums/schema/delivery_method.rb in openactive-0.2.0

- old
+ new

@@ -1,26 +1,15 @@ 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.<br/><br/> + # 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 # - # Commonly used values:<br/><br/> - # - # <ul> - # <li>http://purl.org/goodrelations/v1#DeliveryModeDirectDownload</li> - # <li>http://purl.org/goodrelations/v1#DeliveryModeFreight</li> - # <li>http://purl.org/goodrelations/v1#DeliveryModeMail</li> - # <li>http://purl.org/goodrelations/v1#DeliveryModeOwnFleet</li> - # <li>http://purl.org/goodrelations/v1#DeliveryModePickUp</li> - # <li>http://purl.org/goodrelations/v1#DHL</li> - # <li>http://purl.org/goodrelations/v1#FederalExpress</li> - # <li>http://purl.org/goodrelations/v1#UPS</li> - # </ul> - # 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