Table of Contents

Class DailyStats

Namespace
TorBoxSDK.Models.General
Assembly
TorBoxSDK.dll

Represents a daily statistics snapshot of the TorBox platform.

public sealed record DailyStats : IEquatable<DailyStats>
Inheritance
DailyStats
Implements
Inherited Members

Properties

CreatedAt

Gets the date and time when this snapshot was created, or null if not available.

[JsonPropertyName("created_at")]
public DateTimeOffset? CreatedAt { get; init; }

Property Value

DateTimeOffset?

TotalBytesDownloaded

Gets the total bytes downloaded across the platform.

[JsonPropertyName("total_bytes_downloaded")]
public long TotalBytesDownloaded { get; init; }

Property Value

long

TotalBytesEgressed

Gets the total bytes egressed across the platform.

[JsonPropertyName("total_bytes_egressed")]
public long TotalBytesEgressed { get; init; }

Property Value

long

TotalBytesUploaded

Gets the total bytes uploaded across the platform.

[JsonPropertyName("total_bytes_uploaded")]
public long TotalBytesUploaded { get; init; }

Property Value

long

TotalDownloads

Gets the total number of downloads on the platform for this snapshot.

[JsonPropertyName("total_downloads")]
public long TotalDownloads { get; init; }

Property Value

long

TotalServers

Gets the total number of servers available at the time of this snapshot.

[JsonPropertyName("total_servers")]
public int TotalServers { get; init; }

Property Value

int

TotalUsers

Gets the total number of registered users at the time of this snapshot.

[JsonPropertyName("total_users")]
public long TotalUsers { get; init; }

Property Value

long