We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c39b0e7 commit 19fb0eaCopy full SHA for 19fb0ea
Src/Notion.Client/Models/File/FileObject.cs
@@ -1,4 +1,5 @@
1
-using JsonSubTypes;
+using System.Collections.Generic;
2
+using JsonSubTypes;
3
using Newtonsoft.Json;
4
5
namespace Notion.Client
@@ -10,5 +11,8 @@ public abstract class FileObject : IPageIcon
10
11
{
12
[JsonProperty("type")]
13
public virtual string Type { get; set; }
14
+
15
+ [JsonProperty("caption")]
16
+ public IEnumerable<RichTextBase> Caption { get; set; }
17
}
18
0 commit comments