class Moromi::Aws::Sns::Message::Base

Public Class Methods

build_from_hash(hash) click to toggle source
# File lib/moromi/aws/sns/message/base.rb, line 21
def build_from_hash(hash)
  new(hash)
end

Public Instance Methods

==(other) click to toggle source
# File lib/moromi/aws/sns/message/base.rb, line 16
def ==(other)
  to_hash == other.to_hash
end
to_hash() click to toggle source
# File lib/moromi/aws/sns/message/base.rb, line 8
def to_hash
  raise NotImplementedError
end
to_message_json() click to toggle source
# File lib/moromi/aws/sns/message/base.rb, line 12
def to_message_json
  raise NotImplementedError
end