Sha256: fa46f9a15302b5ea28cdf0335bb5b39d94ebb99cc17a68ebe4755e3a83899916
Contents?: true
Size: 582 Bytes
Versions: 2
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 :OfflineEventAttendanceMode, "https://schema.org/OfflineEventAttendanceMode" new :OnlineEventAttendanceMode, "https://schema.org/OnlineEventAttendanceMode" new :MixedEventAttendanceMode, "https://schema.org/MixedEventAttendanceMode" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openactive-0.5.0 | lib/openactive/enums/schema/event_attendance_mode_enumeration.rb |
openactive-0.4.0 | lib/openactive/enums/schema/event_attendance_mode_enumeration.rb |