Sha256: d13e4d523e43ca1cbd94ab1c418a39429811e89dc6768615cb9d8be3fd6d2755
Contents?: true
Size: 860 Bytes
Versions: 2
Compression:
Stored size: 860 Bytes
Contents
module TD::Types # The call is ready to use. # # @attr protocol [TD::Types::CallProtocol] Call protocols supported by the peer. # @attr connections [Array<TD::Types::CallConnection>] Available UDP reflectors. # @attr config [String] A JSON-encoded call config. # @attr encryption_key [String] Call encryption key. # @attr emojis [Array<String>] Encryption key emojis fingerprint. # @attr allow_p2p [Boolean] True, if peer-to-peer connection is allowed by users privacy settings. class CallState::Ready < CallState attribute :protocol, TD::Types::CallProtocol attribute :connections, TD::Types::Array.of(TD::Types::CallConnection) attribute :config, TD::Types::String attribute :encryption_key, TD::Types::String attribute :emojis, TD::Types::Array.of(TD::Types::String) attribute :allow_p2p, TD::Types::Bool end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.2.0 | lib/tdlib/types/call_state/ready.rb |
tdlib-ruby-2.1.0 | lib/tdlib/types/call_state/ready.rb |