Table of Contents

Class GetMyListOptions

Namespace
TorBoxSDK.Models.Common
Assembly
TorBoxSDK.dll

Represents the query parameters shared by list endpoints (torrents, usenet, web downloads).

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

Remarks

These options are sent as query string parameters, not as a JSON body.

Properties

BypassCache

Gets a value indicating whether to bypass the cache, or null to use the default caching behavior.

[QueryParameterName("bypass_cache")]
public bool? BypassCache { get; init; }

Property Value

bool?

Id

Gets the optional item ID to retrieve a single item, or null to retrieve the full list.

[QueryParameterName("id")]
public long? Id { get; init; }

Property Value

long?

Limit

Gets the optional limit for pagination, or null to use the server default.

[QueryParameterName("limit")]
public int? Limit { get; init; }

Property Value

int?

Offset

Gets the optional offset for pagination, or null to use the server default.

[QueryParameterName("offset")]
public int? Offset { get; init; }

Property Value

int?