참고소스 수정본
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Firecrawl.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Configuration options for crawling a website.
|
||||
/// </summary>
|
||||
public class CrawlOptions
|
||||
{
|
||||
[JsonPropertyName("prompt")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Prompt { get; set; }
|
||||
|
||||
[JsonPropertyName("excludePaths")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public List<string>? ExcludePaths { get; set; }
|
||||
|
||||
[JsonPropertyName("includePaths")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public List<string>? IncludePaths { get; set; }
|
||||
|
||||
[JsonPropertyName("maxDiscoveryDepth")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public int? MaxDiscoveryDepth { get; set; }
|
||||
|
||||
[JsonPropertyName("sitemap")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Sitemap { get; set; }
|
||||
|
||||
[JsonPropertyName("ignoreQueryParameters")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? IgnoreQueryParameters { get; set; }
|
||||
|
||||
[JsonPropertyName("deduplicateSimilarURLs")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? DeduplicateSimilarURLs { get; set; }
|
||||
|
||||
[JsonPropertyName("limit")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public int? Limit { get; set; }
|
||||
|
||||
[JsonPropertyName("crawlEntireDomain")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? CrawlEntireDomain { get; set; }
|
||||
|
||||
[JsonPropertyName("allowExternalLinks")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? AllowExternalLinks { get; set; }
|
||||
|
||||
[JsonPropertyName("allowSubdomains")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? AllowSubdomains { get; set; }
|
||||
|
||||
[JsonPropertyName("delay")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public int? Delay { get; set; }
|
||||
|
||||
[JsonPropertyName("maxConcurrency")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public int? MaxConcurrency { get; set; }
|
||||
|
||||
[JsonPropertyName("webhook")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public object? Webhook { get; set; }
|
||||
|
||||
[JsonPropertyName("scrapeOptions")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public ScrapeOptions? ScrapeOptions { get; set; }
|
||||
|
||||
[JsonPropertyName("regexOnFullURL")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? RegexOnFullURL { get; set; }
|
||||
|
||||
[JsonPropertyName("zeroDataRetention")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? ZeroDataRetention { get; set; }
|
||||
|
||||
[JsonPropertyName("integration")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Integration { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user