Table of Contents

Class ControlSearchEnginesRequest

Namespace
TorBoxSDK.Models.User
Assembly
TorBoxSDK.dll

Represents a request to perform a control operation on the user's search engine settings.

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

Properties

All

Gets a value indicating whether the operation should apply to all search engines, or null if not specified.

[JsonPropertyName("all")]
public bool? All { get; init; }

Property Value

bool?

Id

Gets the identifier of the search engine to operate on, or null if not specified.

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

Property Value

long?

Operation

Gets the operation to perform on the search engines.

[JsonPropertyName("operation")]
public string Operation { get; init; }

Property Value

string