Sha256: 72f18b4aaf5eb4773218aee2e1b20f0f33c1e2f454cad012dbcdfec05200286a

Contents?: true

Size: 717 Bytes

Versions: 1

Compression:

Stored size: 717 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.
  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)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-ruby-2.0.0 lib/tdlib/types/call_state/ready.rb