-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAI21.Models.BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost.g.cs
More file actions
54 lines (48 loc) · 1.96 KB
/
AI21.Models.BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost.g.cs
File metadata and controls
54 lines (48 loc) · 1.96 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
#nullable enable
namespace AI21
{
/// <summary>
///
/// </summary>
public sealed partial class BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost
{
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("file")]
[global::System.Text.Json.Serialization.JsonRequired]
public required byte[] File { get; set; }
/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("filename")]
[global::System.Text.Json.Serialization.JsonRequired]
public required string Filename { 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="BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost" /> class.
/// </summary>
/// <param name="file"></param>
/// <param name="filename"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost(
byte[] file,
string filename)
{
this.File = file ?? throw new global::System.ArgumentNullException(nameof(file));
this.Filename = filename ?? throw new global::System.ArgumentNullException(nameof(filename));
}
/// <summary>
/// Initializes a new instance of the <see cref="BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost" /> class.
/// </summary>
public BodyParsePdfStudioV1DemosDocumentModifierParsePdfPost()
{
}
}
}