File tree Expand file tree Collapse file tree 2 files changed +4
-18
lines changed
Src/Notion.Client/Api/Databases/RequestParams/DatabasesUpdateParameters Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Original file line number Diff line number Diff line change 11using System . Collections . Generic ;
2+ using Newtonsoft . Json ;
23
34namespace Notion . Client
45{
5- public interface IDatabasesUpdateBodyParameters
6- {
7- [ JsonProperty ( "properties" ) ]
8- Dictionary < string , IUpdatePropertySchema > Properties { get ; set ; }
9-
10- [ JsonProperty ( "title" ) ]
11- List < RichTextBaseInput > Title { get ; set ; }
12-
13- [ JsonProperty ( "icon" ) ]
14- IPageIcon Icon { get ; set ; }
15-
16- [ JsonProperty ( "cover" ) ]
17- FileObject Cover { get ; set ; }
18-
19- [ JsonProperty ( "is_inline" ) ]
20- bool ? IsInline { get ; set ; }
21- }
22-
236 public class DatabasesUpdateParameters : IDatabasesUpdateBodyParameters
247 {
258 public Dictionary < string , IUpdatePropertySchema > Properties { get ; set ; }
Original file line number Diff line number Diff line change @@ -19,5 +19,8 @@ public interface IDatabasesUpdateBodyParameters
1919
2020 [ JsonProperty ( "archived" ) ]
2121 bool Archived { get ; set ; }
22+
23+ [ JsonProperty ( "is_inline" ) ]
24+ bool ? IsInline { get ; set ; }
2225 }
2326}
You can’t perform that action at this time.
0 commit comments