Sha256: 64367e3bf0e0955b7f426f068426ca168d7053e244c2ee270d8a9c48d43573f6

Contents?: true

Size: 585 Bytes

Versions: 2

Compression:

Stored size: 585 Bytes

Contents

module TD::Types
  # Specifies the supported call protocols.
  #
  # @attr udp_p2p [Boolean] True, if UDP peer-to-peer connections are supported.
  # @attr udp_reflector [Boolean] True, if connection through UDP reflectors is supported.
  # @attr min_layer [Integer] Minimum supported API layer; use 65.
  # @attr max_layer [Integer] Maximum supported API layer; use 65.
  class CallProtocol < Base
    attribute :udp_p2p, TD::Types::Bool
    attribute :udp_reflector, TD::Types::Bool
    attribute :min_layer, TD::Types::Integer
    attribute :max_layer, TD::Types::Integer
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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