Class AddSearchEnginesRequest
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
DownloadType
Gets the download type for the search engine, or null if not specified.
[JsonPropertyName("download_type")]
public string? DownloadType { 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; }