Sha256: 4b35062d62c8362bd4ece111926f8906c65b8ffa269f3f1aa79e712cbd66ca68

Contents?: true

Size: 537 Bytes

Versions: 1

Compression:

Stored size: 537 Bytes

Contents

module TD::Types
  # A WebRTC server.
  #
  # @attr username [String] Username to be used for authentication.
  # @attr password [String] Authentication password.
  # @attr supports_turn [Boolean] True, if the server supports TURN.
  # @attr supports_stun [Boolean] True, if the server supports STUN.
  class CallServerType::Webrtc < CallServerType
    attribute :username, TD::Types::String
    attribute :password, TD::Types::String
    attribute :supports_turn, TD::Types::Bool
    attribute :supports_stun, TD::Types::Bool
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/call_server_type/webrtc.rb