Skip to content

Commit

Permalink
Add comments on public api 📝
Browse files Browse the repository at this point in the history
  • Loading branch information
KoditkarVedant committed Aug 18, 2021
1 parent 9d98ea1 commit 52fa7a2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Src/Notion.Client/Api/Blocks/IBlocksClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ public interface IBlocksClient
/// <returns>Block</returns>
Task<Block> RetrieveAsync(string blockId);

/// <summary>
/// Updates the content for the specified block_id based on the block type.
/// </summary>
/// <param name="blockId"></param>
/// <param name="updateBlock"></param>
/// <returns>Block</returns>
Task<Block> UpdateAsync(string blockId, IUpdateBlock updateBlock);

Task<PaginatedList<Block>> RetrieveChildrenAsync(string blockId, BlocksRetrieveChildrenParameters parameters = null);
Expand Down

0 comments on commit 52fa7a2

Please sign in to comment.