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