Sha256: 41c95fdc32bc30dd1052bf66739e1b93db6e8c3c45ee218d667e1a246b78b63d

Contents?: true

Size: 855 Bytes

Versions: 3

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 :ParentalSupport, "https://schema.org/ParentalSupport"
        new :UnemploymentSupport, "https://schema.org/UnemploymentSupport"
        new :OneTimePayments, "https://schema.org/OneTimePayments"
        new :DisabilitySupport, "https://schema.org/DisabilitySupport"
        new :BasicIncome, "https://schema.org/BasicIncome"
        new :PaidLeave, "https://schema.org/PaidLeave"
        new :HealthCare, "https://schema.org/HealthCare"
        new :BusinessSupport, "https://schema.org/BusinessSupport"
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openactive-0.2.2 lib/openactive/enums/schema/government_benefits_type.rb
openactive-0.2.1 lib/openactive/enums/schema/government_benefits_type.rb
openactive-0.2.0 lib/openactive/enums/schema/government_benefits_type.rb