Class: Empp::DeliveryState
- Inherits:
-
Object
- Object
- Empp::DeliveryState
- Defined in:
- lib/empp/delivery_state.rb
Instance Attribute Summary collapse
-
#dest_terminal_id ⇒ Object
Returns the value of attribute dest_terminal_id.
-
#done_time ⇒ Object
Returns the value of attribute done_time.
-
#msg_id ⇒ Object
Returns the value of attribute msg_id.
-
#sequence_id ⇒ Object
Returns the value of attribute sequence_id.
-
#state ⇒ Object
Returns the value of attribute state.
-
#submit_time ⇒ Object
Returns the value of attribute submit_time.
Instance Method Summary collapse
Instance Attribute Details
#dest_terminal_id ⇒ Object
Returns the value of attribute dest_terminal_id.
4 5 6 |
# File 'lib/empp/delivery_state.rb', line 4 def dest_terminal_id @dest_terminal_id end |
#done_time ⇒ Object
Returns the value of attribute done_time.
4 5 6 |
# File 'lib/empp/delivery_state.rb', line 4 def done_time @done_time end |
#msg_id ⇒ Object
Returns the value of attribute msg_id.
4 5 6 |
# File 'lib/empp/delivery_state.rb', line 4 def msg_id @msg_id end |
#sequence_id ⇒ Object
Returns the value of attribute sequence_id.
4 5 6 |
# File 'lib/empp/delivery_state.rb', line 4 def sequence_id @sequence_id end |
#state ⇒ Object
Returns the value of attribute state.
4 5 6 |
# File 'lib/empp/delivery_state.rb', line 4 def state @state end |
#submit_time ⇒ Object
Returns the value of attribute submit_time.
4 5 6 |
# File 'lib/empp/delivery_state.rb', line 4 def submit_time @submit_time end |
Instance Method Details
#to_s ⇒ Object
6 7 8 |
# File 'lib/empp/delivery_state.rb', line 6 def to_s "msg_id=#{@msg_id}, state=#{@state}, submit_time=#{@submit_time}, done_time=#{@done_time}, dest_terminal_id=#{@dest_terminal_id}, sequence_id=#{@sequence_id}" end |