Class ModifySearchEnginesRequest
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
DownloadType
Gets the download type for the search engine, or null if not specified.
[JsonPropertyName("download_type")]
public string? DownloadType { get; init; }
Property Value
Id
Gets the identifier of the search engine to modify.
[JsonPropertyName("id")]
public long Id { get; init; }
Property Value
Type
Gets the type of search engine, or null if not specified.
[JsonPropertyName("type")]
public string? Type { get; init; }
Property Value
Url
Gets the URL of the search engine, or null if not specified.
[JsonPropertyName("url")]
public string? Url { get; init; }