Sha256: d7b0f569462030361a9310cc255e3fe5fad9a42e41ab7c097e2e9114ffdb2de8
Contents?: true
Size: 855 Bytes
Versions: 2
Compression:
Stored size: 855 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered. class GovernmentBenefitsType < TypesafeEnum::Base new :DisabilitySupport, "https://schema.org/DisabilitySupport" new :UnemploymentSupport, "https://schema.org/UnemploymentSupport" new :BasicIncome, "https://schema.org/BasicIncome" new :HealthCare, "https://schema.org/HealthCare" new :OneTimePayments, "https://schema.org/OneTimePayments" new :PaidLeave, "https://schema.org/PaidLeave" new :ParentalSupport, "https://schema.org/ParentalSupport" new :BusinessSupport, "https://schema.org/BusinessSupport" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/enums/schema/government_benefits_type.rb |
openactive-0.4.0 | lib/openactive/enums/schema/government_benefits_type.rb |