SMPPEX.Pdu.command_name
You're seeing just the function
command_name
, go back to SMPPEX.Pdu module for more information.
Specs
Returns Pdu's symbolic command name as an atom or :unknown
if Pdu's command_id
do not correspond to any real SMPP command.
Examples
iex(1)> pdu = SMPPEX.Pdu.new(1)
iex(2)> SMPPEX.Pdu.command_name(pdu)
:bind_receiver
iex(3)> pdu = SMPPEX.Pdu.new(1111111)
iex(4)> SMPPEX.Pdu.command_name(pdu)
:unknown