Sha256: 4000980605c67b18d5055ae5beb21cf41c9bfecb98016bc6ef75864b1fd0a780

Contents?: true

Size: 530 Bytes

Versions: 4

Compression:

Stored size: 530 Bytes

Contents

require 'typesafe_enum'

module OpenActive
  module Enums
    module Schema
      # EventStatusType is an enumeration type whose instances represent several states that an Event may be in.
      class EventStatusType < TypesafeEnum::Base
        new :EventPostponed, "https://schema.org/EventPostponed"
        new :EventRescheduled, "https://schema.org/EventRescheduled"
        new :EventScheduled, "https://schema.org/EventScheduled"
        new :EventCancelled, "https://schema.org/EventCancelled"
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
openactive-0.1.2 lib/openactive/enums/schema/event_status_type.rb
openactive-0.1.1 lib/openactive/enums/schema/event_status_type.rb
openactive-0.1.0 lib/openactive/enums/schema/event_status_type.rb
openactive-0.1.0.rc1 lib/openactive/enums/schema/event_status_type.rb