Package org.drinkless.tdlib
Class TdApi.NetworkStatisticsEntryFile
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.NetworkStatisticsEntry
-
- org.drinkless.tdlib.TdApi.NetworkStatisticsEntryFile
-
- Enclosing class:
- TdApi
public static class TdApi.NetworkStatisticsEntryFile extends TdApi.NetworkStatisticsEntry
Contains information about the total amount of data that was used to send and receive files.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.FileTypefileTypeType of the file the data is part of; pass null if the data isn't related to files.TdApi.NetworkTypenetworkTypeType of the network the data was sent through.longreceivedBytesTotal number of bytes received.longsentBytesTotal number of bytes sent.
-
Constructor Summary
Constructors Constructor Description NetworkStatisticsEntryFile()Contains information about the total amount of data that was used to send and receive files.NetworkStatisticsEntryFile(TdApi.FileType fileType, TdApi.NetworkType networkType, long sentBytes, long receivedBytes)Contains information about the total amount of data that was used to send and receive files.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
fileType
public TdApi.FileType fileType
Type of the file the data is part of; pass null if the data isn't related to files.
-
networkType
public TdApi.NetworkType networkType
Type of the network the data was sent through. Call setNetworkType to maintain the actual network type.
-
sentBytes
public long sentBytes
Total number of bytes sent.
-
receivedBytes
public long receivedBytes
Total number of bytes received.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NetworkStatisticsEntryFile
public NetworkStatisticsEntryFile()
Contains information about the total amount of data that was used to send and receive files.
-
NetworkStatisticsEntryFile
public NetworkStatisticsEntryFile(TdApi.FileType fileType, TdApi.NetworkType networkType, long sentBytes, long receivedBytes)
Contains information about the total amount of data that was used to send and receive files.- Parameters:
fileType- Type of the file the data is part of; pass null if the data isn't related to files.networkType- Type of the network the data was sent through. Call setNetworkType to maintain the actual network type.sentBytes- Total number of bytes sent.receivedBytes- Total number of bytes received.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-