lib/openactive/enums/schema/item_availability.rb in openactive-0.3.0 vs lib/openactive/enums/schema/item_availability.rb in openactive-0.4.0
- old
+ new
@@ -3,19 +3,19 @@
module OpenActive
module Enums
module Schema
# A list of possible product availability options.
class ItemAvailability < TypesafeEnum::Base
- new :OutOfStock, "https://schema.org/OutOfStock"
- new :Discontinued, "https://schema.org/Discontinued"
- new :OnlineOnly, "https://schema.org/OnlineOnly"
- new :InStock, "https://schema.org/InStock"
- new :InStoreOnly, "https://schema.org/InStoreOnly"
- new :SoldOut, "https://schema.org/SoldOut"
+ new :PreOrder, "https://schema.org/PreOrder"
new :PreSale, "https://schema.org/PreSale"
new :BackOrder, "https://schema.org/BackOrder"
- new :PreOrder, "https://schema.org/PreOrder"
+ new :OnlineOnly, "https://schema.org/OnlineOnly"
+ new :SoldOut, "https://schema.org/SoldOut"
+ new :Discontinued, "https://schema.org/Discontinued"
new :LimitedAvailability, "https://schema.org/LimitedAvailability"
+ new :InStock, "https://schema.org/InStock"
+ new :OutOfStock, "https://schema.org/OutOfStock"
+ new :InStoreOnly, "https://schema.org/InStoreOnly"
end
end
end
end