class Empp::MsgSubmitResp
Attributes
msg_id[RW]
status[RW]
Public Class Methods
new()
click to toggle source
# File lib/empp/msg_submit_resp.rb, line 10 def initialize @command_id = Constants::EMPP_SUBMIT_RESP @msg_id = nil @status = nil end
Public Instance Methods
to_s()
click to toggle source
Calls superclass method
Empp::EmppBase#to_s
# File lib/empp/msg_submit_resp.rb, line 16 def to_s str = super str + ", status = #{@status}, msg_id=#{@msg_id}" end