Table of Contents

Class InactiveCheckResult

Namespace
TorBoxSDK.Models.Relay
Assembly
TorBoxSDK.dll

Represents the result of an inactivity check for a torrent on the TorBox Relay API.

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

Properties

IsInactive

Gets a value indicating whether the torrent is currently inactive.

[JsonPropertyName("is_inactive")]
public bool IsInactive { get; init; }

Property Value

bool

LastActive

Gets the date and time when the torrent was last active, or null if not available.

[JsonPropertyName("last_active")]
public DateTimeOffset? LastActive { get; init; }

Property Value

DateTimeOffset?

Status

Gets the status message of the inactivity check, or null if not available.

[JsonPropertyName("status")]
public string? Status { get; init; }

Property Value

string