-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFirecrawl.Models.CrawlStatusResponseObjDataItem.g.cs
More file actions
97 lines (86 loc) · 3.45 KB
/
Firecrawl.Models.CrawlStatusResponseObjDataItem.g.cs
File metadata and controls
97 lines (86 loc) · 3.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#nullable enable
namespace Firecrawl
{
/// <summary>
///
/// </summary>
public sealed partial class CrawlStatusResponseObjDataItem
{
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("markdown")]
public string? Markdown { get; set; }
/// <summary>
/// HTML version of the content on page if `includeHtml` is true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("html")]
public string? Html { get; set; }
/// <summary>
/// Raw HTML content of the page if `includeRawHtml` is true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("rawHtml")]
public string? RawHtml { get; set; }
/// <summary>
/// List of links on the page if `includeLinks` is true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("links")]
public global::System.Collections.Generic.IList<string>? Links { get; set; }
/// <summary>
/// Screenshot of the page if `includeScreenshot` is true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("screenshot")]
public string? Screenshot { get; set; }
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("metadata")]
public global::Firecrawl.CrawlStatusResponseObjDataItemMetadata? Metadata { get; set; }
/// <summary>
/// Additional properties that are not explicitly defined in the schema
/// </summary>
[global::System.Text.Json.Serialization.JsonExtensionData]
public global::System.Collections.Generic.IDictionary<string, object> AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary<string, object>();
/// <summary>
/// Initializes a new instance of the <see cref="CrawlStatusResponseObjDataItem" /> class.
/// </summary>
/// <param name="markdown"></param>
/// <param name="html">
/// HTML version of the content on page if `includeHtml` is true
/// </param>
/// <param name="rawHtml">
/// Raw HTML content of the page if `includeRawHtml` is true
/// </param>
/// <param name="links">
/// List of links on the page if `includeLinks` is true
/// </param>
/// <param name="screenshot">
/// Screenshot of the page if `includeScreenshot` is true
/// </param>
/// <param name="metadata"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public CrawlStatusResponseObjDataItem(
string? markdown,
string? html,
string? rawHtml,
global::System.Collections.Generic.IList<string>? links,
string? screenshot,
global::Firecrawl.CrawlStatusResponseObjDataItemMetadata? metadata)
{
this.Markdown = markdown;
this.Html = html;
this.RawHtml = rawHtml;
this.Links = links;
this.Screenshot = screenshot;
this.Metadata = metadata;
}
/// <summary>
/// Initializes a new instance of the <see cref="CrawlStatusResponseObjDataItem" /> class.
/// </summary>
public CrawlStatusResponseObjDataItem()
{
}
}
}