class Empp::MsgDelivery

Attributes

dest_id[RW]
msg_content[RW]
msg_format[RW]
msg_id[RW]
msg_length[RW]
registered_delivery[RW]
service_id[RW]
src_terminal_id[RW]

Public Class Methods

new() click to toggle source
# File lib/empp/msg_delivery.rb, line 10
def initialize
  @command_id = Constants::EMPP_DELIVER
end

Public Instance Methods

to_s() click to toggle source
Calls superclass method Empp::EmppBase#to_s
# File lib/empp/msg_delivery.rb, line 14
def to_s
  str = super
  str + "msg_id=#{@msg_id}, dest_id=#{@dest_id}, service_id=#{@service_id}, msg_format=#{@msg_format}, src_terminal_id=#{@src_terminal_id}, msg_length=#{@msg_length}, msg_content=#{@msg_content}"
end