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 2e31537 commit 47adf1dCopy full SHA for 47adf1d
Src/Notion.Client/Models/Blocks/EmbedBlock.cs
@@ -1,4 +1,5 @@
1
-using Newtonsoft.Json;
+using System.Collections.Generic;
2
+using Newtonsoft.Json;
3
4
namespace Notion.Client
5
{
@@ -13,6 +14,10 @@ public class Info
13
14
15
[JsonProperty("url")]
16
public string Url { get; set; }
17
+
18
+ [JsonProperty("caption")]
19
+ public IEnumerable<RichTextBase> Caption { get; set; }
20
21
}
22
23
0 commit comments