Sha256: 3c7f3ea00d90451390121c532a5f90e5164594095360653040fb4f7e85b5703d

Contents?: true

Size: 392 Bytes

Versions: 3

Compression:

Stored size: 392 Bytes

Contents

module TD::Types
  # A SOCKS5 proxy server.
  #
  # @attr username [TD::Types::String, nil] Username for logging in; may be empty.
  # @attr password [TD::Types::String, nil] Password for logging in; may be empty.
  class ProxyType::Socks5 < ProxyType
    attribute :username, TD::Types::String.optional.default(nil)
    attribute :password, TD::Types::String.optional.default(nil)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/proxy_type/socks5.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/proxy_type/socks5.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/proxy_type/socks5.rb