Sha256: 1dba8169de580f8e2218fa7dc9249e7814b14dd0bbaea745dde7d2c710a53e3e
Contents?: true
Size: 924 Bytes
Versions: 3
Compression:
Stored size: 924 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. class RestrictedDiet < TypesafeEnum::Base new :VegetarianDiet, "https://schema.org/VegetarianDiet" new :LowCalorieDiet, "https://schema.org/LowCalorieDiet" new :GlutenFreeDiet, "https://schema.org/GlutenFreeDiet" new :KosherDiet, "https://schema.org/KosherDiet" new :VeganDiet, "https://schema.org/VeganDiet" new :LowFatDiet, "https://schema.org/LowFatDiet" new :LowLactoseDiet, "https://schema.org/LowLactoseDiet" new :DiabeticDiet, "https://schema.org/DiabeticDiet" new :HinduDiet, "https://schema.org/HinduDiet" new :LowSaltDiet, "https://schema.org/LowSaltDiet" new :HalalDiet, "https://schema.org/HalalDiet" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems