Table of Contents

Class EditWebDownloadRequest

Namespace
TorBoxSDK.Models.WebDownloads
Assembly
TorBoxSDK.dll

Represents a request to edit the properties of an existing web download.

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

Properties

AlternativeHashes

Gets the alternative hashes for the download, or null to leave alternative hashes unchanged.

[JsonPropertyName("alternative_hashes")]
public IReadOnlyList<string>? AlternativeHashes { get; init; }

Property Value

IReadOnlyList<string>

Name

Gets the new name for the download, or null to leave the name unchanged.

[JsonPropertyName("name")]
public string? Name { get; init; }

Property Value

string

Tags

Gets the tags to apply to the download, or null to leave tags unchanged.

[JsonPropertyName("tags")]
public IReadOnlyList<string>? Tags { get; init; }

Property Value

IReadOnlyList<string>

WebdlId

Gets the unique identifier of the web download to edit.

[JsonPropertyName("webdl_id")]
public long WebdlId { get; init; }

Property Value

long