Class: TD::Types::Call
Overview
Describes a call.
Instance Attribute Summary collapse
-
#id ⇒ Integer
Call identifier, not persistent.
-
#is_outgoing ⇒ Boolean
True, if the call is outgoing.
-
#is_video ⇒ Boolean
True, if the call is a video call.
-
#state ⇒ TD::Types::CallState
Call state.
-
#user_id ⇒ Integer
Peer user identifier.
Method Summary
Methods inherited from Base
Instance Attribute Details
#id ⇒ Integer
Call identifier, not persistent.
9 10 11 |
# File 'lib/tdlib/types/call.rb', line 9 def id @id end |
#is_outgoing ⇒ Boolean
True, if the call is outgoing.
9 10 11 |
# File 'lib/tdlib/types/call.rb', line 9 def is_outgoing @is_outgoing end |
#is_video ⇒ Boolean
True, if the call is a video call.
9 10 11 |
# File 'lib/tdlib/types/call.rb', line 9 def is_video @is_video end |
#state ⇒ TD::Types::CallState
Call state.
9 10 11 |
# File 'lib/tdlib/types/call.rb', line 9 def state @state end |
#user_id ⇒ Integer
Peer user identifier.
9 10 11 |
# File 'lib/tdlib/types/call.rb', line 9 def user_id @user_id end |