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 9d98ea1 commit 52fa7a2Copy full SHA for 52fa7a2
Src/Notion.Client/Api/Blocks/IBlocksClient.cs
@@ -11,6 +11,12 @@ public interface IBlocksClient
11
/// <returns>Block</returns>
12
Task<Block> RetrieveAsync(string blockId);
13
14
+ /// <summary>
15
+ /// Updates the content for the specified block_id based on the block type.
16
+ /// </summary>
17
+ /// <param name="blockId"></param>
18
+ /// <param name="updateBlock"></param>
19
+ /// <returns>Block</returns>
20
Task<Block> UpdateAsync(string blockId, IUpdateBlock updateBlock);
21
22
Task<PaginatedList<Block>> RetrieveChildrenAsync(string blockId, BlocksRetrieveChildrenParameters parameters = null);
0 commit comments