-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFirecrawl.Models.CrawlResponse.g.cs
More file actions
62 lines (54 loc) · 1.75 KB
/
Firecrawl.Models.CrawlResponse.g.cs
File metadata and controls
62 lines (54 loc) · 1.75 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
#nullable enable
namespace Firecrawl
{
/// <summary>
///
/// </summary>
public sealed partial class CrawlResponse
{
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("success")]
public bool? Success { get; set; }
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("id")]
public string? Id { get; set; }
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("url")]
public string? Url { 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="CrawlResponse" /> class.
/// </summary>
/// <param name="success"></param>
/// <param name="id"></param>
/// <param name="url"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public CrawlResponse(
bool? success,
string? id,
string? url)
{
this.Success = success;
this.Id = id;
this.Url = url;
}
/// <summary>
/// Initializes a new instance of the <see cref="CrawlResponse" /> class.
/// </summary>
public CrawlResponse()
{
}
}
}