Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ namespace Notion.Client
public class BlocksAppendChildrenParameters : IBlocksAppendChildrenBodyParameters
{
public IEnumerable<IBlock> Children { get; set; }

public string After { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@ public interface IBlocksAppendChildrenBodyParameters
{
[JsonProperty("children")]
IEnumerable<IBlock> Children { get; set; }

/// <summary>
/// The ID of the existing block that the new block should be appended after.
/// </summary>
[JsonProperty("after")]
public string After { get; set; }
}
}