Table of Contents

Class AddSearchEnginesRequest

Namespace
TorBoxSDK.Models.User
Assembly
TorBoxSDK.dll

Represents a request to add a search engine to the user's settings.

public sealed record AddSearchEnginesRequest : IEquatable<AddSearchEnginesRequest>
Inheritance
AddSearchEnginesRequest
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

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