class RtrPushApi::DlrQueryResponse
Represents The Delivery receipt status and reason code
Attributes
id[R]
reason_code[R]
status[R]
Public Class Methods
new(status, reason_code, push_id)
click to toggle source
# File lib/push_api/rtr_push_api.rb, line 19 def initialize(status, reason_code, push_id) @status = status @reason_code = reason_code @id = push_id end