Sha256: 1cd4af357021980100933deddcc5480c6f25455c22c059eb300603e55ebc56d3

Contents?: true

Size: 539 Bytes

Versions: 3

Compression:

Stored size: 539 Bytes

Contents

module TD::Types
  # Describes the address of UDP reflectors.
  #
  # @attr id [Integer] Reflector identifier.
  # @attr ip [String] IPv4 reflector address.
  # @attr ipv6 [String] IPv6 reflector address.
  # @attr port [Integer] Reflector port number.
  # @attr peer_tag [String] Connection peer tag.
  class CallConnection < Base
    attribute :id, TD::Types::Integer
    attribute :ip, TD::Types::String
    attribute :ipv6, TD::Types::String
    attribute :port, TD::Types::Integer
    attribute :peer_tag, TD::Types::String
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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