Sha256: 1593f629d5497551bde4960b66bf4ec29fc738e1e18e6bc05e31d440e5a691fb
Contents?: true
Size: 708 Bytes
Versions: 4
Compression:
Stored size: 708 Bytes
Contents
module TD::Types # Contains information about the total amount of data that was used for calls. # # @attr network_type [TD::Types::NetworkType] Type of the network the data was sent through. # Call setNetworkType to maintain the actual network type. # @attr sent_bytes [Integer] Total number of bytes sent. # @attr received_bytes [Integer] Total number of bytes received. # @attr duration [Float] Total call duration, in seconds. class NetworkStatisticsEntry::Call < NetworkStatisticsEntry attribute :network_type, TD::Types::NetworkType attribute :sent_bytes, TD::Types::Integer attribute :received_bytes, TD::Types::Integer attribute :duration, TD::Types::Float end end
Version data entries
4 entries across 4 versions & 2 rubygems