Class GetQueuedOptions
Represents the query parameters for retrieving queued downloads.
public sealed record GetQueuedOptions : IEquatable<GetQueuedOptions>
- Inheritance
-
GetQueuedOptions
- 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 queued download 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?
Type
Gets the optional type filter for queued downloads, or null to include all types.
[QueryParameterName("type")]
public string? Type { get; init; }