Files
2026-05-12 19:40:31 +09:00

19 lines
416 B
C#

using System.Text.Json.Serialization;
namespace Firecrawl.Models;
/// <summary>
/// Response from starting an async batch scrape job.
/// </summary>
public class BatchScrapeResponse
{
[JsonPropertyName("success")]
public bool Success { get; set; }
[JsonPropertyName("id")]
public string? Id { get; set; }
[JsonPropertyName("invalidURLs")]
public List<string>? InvalidURLs { get; set; }
}