참고소스 수정본
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Firecrawl.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Configuration options for URL discovery (map).
|
||||
/// </summary>
|
||||
public class MapOptions
|
||||
{
|
||||
[JsonPropertyName("search")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Search { get; set; }
|
||||
|
||||
[JsonPropertyName("sitemap")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Sitemap { get; set; }
|
||||
|
||||
[JsonPropertyName("includeSubdomains")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? IncludeSubdomains { get; set; }
|
||||
|
||||
[JsonPropertyName("ignoreQueryParameters")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? IgnoreQueryParameters { get; set; }
|
||||
|
||||
[JsonPropertyName("limit")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public int? Limit { get; set; }
|
||||
|
||||
[JsonPropertyName("timeout")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public int? Timeout { get; set; }
|
||||
|
||||
[JsonPropertyName("integration")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Integration { get; set; }
|
||||
|
||||
[JsonPropertyName("location")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public LocationConfig? Location { get; set; }
|
||||
|
||||
[JsonPropertyName("ignoreCache")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public bool? IgnoreCache { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user