Sha256: effaadead563e85acc4002d87de089cb80cd3748a0e07e0aa74769c451e7b953
Contents?: true
Size: 582 Bytes
Versions: 3
Compression:
Stored size: 582 Bytes
Contents
require 'typesafe_enum' module OpenActive module Enums module Schema # An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline. class EventAttendanceModeEnumeration < TypesafeEnum::Base new :OnlineEventAttendanceMode, "https://schema.org/OnlineEventAttendanceMode" new :OfflineEventAttendanceMode, "https://schema.org/OfflineEventAttendanceMode" new :MixedEventAttendanceMode, "https://schema.org/MixedEventAttendanceMode" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems