class RtrHttpGateway::DlrQueryResponse
Represents The Delivery receipt status and reason code
Attributes
msg_id[R]
reason_code[R]
status[R]
Public Class Methods
new(status, reason_code, msg_id)
click to toggle source
# File lib/rtr_http_gateway.rb, line 11 def initialize(status, reason_code, msg_id) @status = status @reason_code = reason_code @msg_id = msg_id end