Class Stats
- Namespace
- TorBoxSDK.Models.Notifications
- Assembly
- TorBoxSDK.dll
Represents aggregate statistics about TorBox service usage.
public sealed record Stats : IEquatable<Stats>
- Inheritance
-
Stats
- Implements
- Inherited Members
Properties
ActiveTorrents
Gets the number of currently active torrent downloads.
[JsonPropertyName("active_torrents")]
public int ActiveTorrents { get; init; }
Property Value
ActiveUsenet
Gets the number of currently active Usenet downloads.
[JsonPropertyName("active_usenet")]
public int ActiveUsenet { get; init; }
Property Value
ActiveWebDownloads
Gets the number of currently active web downloads.
[JsonPropertyName("active_web_downloads")]
public int ActiveWebDownloads { get; init; }
Property Value
TotalBytesDownloaded
Gets the total number of bytes downloaded across all download types.
[JsonPropertyName("total_bytes_downloaded")]
public long TotalBytesDownloaded { get; init; }
Property Value
TotalBytesUploaded
Gets the total number of bytes uploaded across all download types.
[JsonPropertyName("total_bytes_uploaded")]
public long TotalBytesUploaded { get; init; }
Property Value
TotalTorrentsDownloaded
Gets the total number of torrent downloads completed.
[JsonPropertyName("total_torrents_downloaded")]
public long TotalTorrentsDownloaded { get; init; }
Property Value
TotalUsenetDownloaded
Gets the total number of Usenet downloads completed.
[JsonPropertyName("total_usenet_downloaded")]
public long TotalUsenetDownloaded { get; init; }
Property Value
TotalWebDownloadsDownloaded
Gets the total number of web downloads completed.
[JsonPropertyName("total_web_downloads_downloaded")]
public long TotalWebDownloadsDownloaded { get; init; }