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 f65fe9b commit 688e4d7Copy full SHA for 688e4d7
‎Src/Notion.Client/Models/Blocks/BookmarkBlock.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,9 @@ 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
0 commit comments