62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace Firecrawl.Models;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Configuration options for web search.
|
||
|
|
/// </summary>
|
||
|
|
public class SearchOptions
|
||
|
|
{
|
||
|
|
[JsonPropertyName("sources")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public List<object>? Sources { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("categories")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public List<object>? Categories { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("includeDomains")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public List<string>? IncludeDomains { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("excludeDomains")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public List<string>? ExcludeDomains { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("limit")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public int? Limit { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("tbs")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public string? Tbs { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("location")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public string? Location { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("ignoreInvalidURLs")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public bool? IgnoreInvalidURLs { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("timeout")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public int? Timeout { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("scrapeOptions")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public ScrapeOptions? ScrapeOptions { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("integration")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public string? Integration { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("country")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public string? Country { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("enterprise")]
|
||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||
|
|
public bool? Enterprise { get; set; }
|
||
|
|
}
|