Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wildbit/postmark-gem
Browse files Browse the repository at this point in the history
  • Loading branch information
temochka committed Jul 11, 2016
2 parents 5b85037 + 731614d commit 0c652b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/postmark/bounce.rb
Expand Up @@ -3,7 +3,7 @@
module Postmark
class Bounce

attr_reader :email, :bounced_at, :type, :details, :name, :id, :server_id, :tag, :message_id, :subject
attr_reader :email, :bounced_at, :type, :description, :details, :name, :id, :server_id, :tag, :message_id, :subject

def initialize(values = {})
values = Postmark::HashHelper.to_ruby(values)
Expand All @@ -12,6 +12,7 @@ def initialize(values = {})
@bounced_at = Time.parse(values[:bounced_at])
@type = values[:type]
@name = values[:name]
@description = values[:description]
@details = values[:details]
@tag = values[:tag]
@dump_available = values[:dump_available]
Expand Down

0 comments on commit 0c652b3

Please sign in to comment.