module Aws::Lex::Conversation::Type::Enumeration

Public Class Methods

included(base) click to toggle source
# File lib/aws/lex/conversation/type/enumeration.rb, line 8
def self.included(base)
  base.extend(ClassMethods)
  base.include(InstanceMethods)
  base.attr_accessor(:raw)
  base.class_eval do
    def initialize(raw)
      self.raw = raw
    end
  end
end
new(raw) click to toggle source
# File lib/aws/lex/conversation/type/enumeration.rb, line 13
def initialize(raw)
  self.raw = raw
end