Table of Contents

Class ModifySearchEnginesRequest

Namespace
TorBoxSDK.Models.User
Assembly
TorBoxSDK.dll

Represents a request to modify an existing search engine in the user's settings.

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

Properties

Apikey

Gets the API key for the search engine, or null if not specified.

[JsonPropertyName("apikey")]
public string? Apikey { get; init; }

Property Value

string

DownloadType

Gets the download type for the search engine, or null if not specified.

[JsonPropertyName("download_type")]
public string? DownloadType { get; init; }

Property Value

string

Id

Gets the identifier of the search engine to modify.

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

Property Value

long

Type

Gets the type of search engine, or null if not specified.

[JsonPropertyName("type")]
public string? Type { get; init; }

Property Value

string

Url

Gets the URL of the search engine, or null if not specified.

[JsonPropertyName("url")]
public string? Url { get; init; }

Property Value

string