Sha256: 0fcbc330ca776ef192ff413da179f091ac6585518d5640342b05276f851b9396
Contents?: true
Size: 559 Bytes
Versions: 3
Compression:
Stored size: 559 Bytes
Contents
module TD::Types # A WebRTC server. # # @attr username [TD::Types::String] Username to be used for authentication. # @attr password [TD::Types::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
3 entries across 3 versions & 1 rubygems