Sha256: 6afeb4b8a5ae255eba02e8373b66cd5a0aa317db7d3390900c68dda9823bcdf6

Contents?: true

Size: 461 Bytes

Versions: 3

Compression:

Stored size: 461 Bytes

Contents

module TD::Types
  # Describes a call.
  #
  # @attr id [Integer] Call identifier, not persistent.
  # @attr user_id [Integer] Peer user identifier.
  # @attr is_outgoing [Boolean] True, if the call is outgoing.
  # @attr state [TD::Types::CallState] Call state.
  class Call < Base
    attribute :id, TD::Types::Integer
    attribute :user_id, TD::Types::Integer
    attribute :is_outgoing, TD::Types::Bool
    attribute :state, TD::Types::CallState
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/call.rb
tdlib-ruby-2.1.0 lib/tdlib/types/call.rb
tdlib-ruby-2.0.0 lib/tdlib/types/call.rb