Sha256: 51a31a717d519d4f7fe9674473a97bf2800cb167611d4c59b630d8c709b6b43f

Contents?: true

Size: 924 Bytes

Versions: 1

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 :VeganDiet, "https://schema.org/VeganDiet"
        new :LowFatDiet, "https://schema.org/LowFatDiet"
        new :KosherDiet, "https://schema.org/KosherDiet"
        new :HinduDiet, "https://schema.org/HinduDiet"
        new :HalalDiet, "https://schema.org/HalalDiet"
        new :VegetarianDiet, "https://schema.org/VegetarianDiet"
        new :LowSaltDiet, "https://schema.org/LowSaltDiet"
        new :LowCalorieDiet, "https://schema.org/LowCalorieDiet"
        new :LowLactoseDiet, "https://schema.org/LowLactoseDiet"
        new :GlutenFreeDiet, "https://schema.org/GlutenFreeDiet"
        new :DiabeticDiet, "https://schema.org/DiabeticDiet"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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