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

Filter by extension

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 @@ -19,5 +19,7 @@ public class DatabasesCreateParameters : IDatabasesCreateBodyParameters, IDataba

[JsonProperty("cover")]
public FileObject Cover { get; set; }

public bool? IsInline { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,8 @@ public interface IDatabasesCreateBodyParameters

[JsonProperty("title")]
List<RichTextBaseInput> Title { get; set; }

[JsonProperty("is_inline")]
bool? IsInline { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using Newtonsoft.Json;

namespace Notion.Client
{
Expand All @@ -13,5 +14,7 @@ public class DatabasesUpdateParameters : IDatabasesUpdateBodyParameters
public FileObject Cover { get; set; }

public bool Archived { get; set; }

public bool? IsInline { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@ public interface IDatabasesUpdateBodyParameters

[JsonProperty("archived")]
bool Archived { get; set; }

[JsonProperty("is_inline")]
bool? IsInline { get; set; }
}
}
3 changes: 3 additions & 0 deletions Src/Notion.Client/Models/Database/Database.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,8 @@ public class Database : IObject, IObjectModificationData
public PartialUser CreatedBy { get; set; }

public PartialUser LastEditedBy { get; set; }

[JsonProperty("is_inline")]
public bool IsInline { get; set; }
}
}