module Aws::Lex::Conversation::Type::Base

Public Class Methods

included(base) click to toggle source
# File lib/aws/lex/conversation/type/base.rb, line 8
def self.included(base)
  base.include(Shrink::Wrap)
  base.include(InstanceMethods)
  base.extend(ClassMethods)
  base.transform(Shrink::Wrap::Transformer::Symbolize)
  base.class_eval do
    def initialize(opts = {})
      assign_attributes!(opts)
    end
  end
end
new(opts = {}) click to toggle source
# File lib/aws/lex/conversation/type/base.rb, line 14
def initialize(opts = {})
  assign_attributes!(opts)
end