8000 Fix merge issues · notion-dotnet/notion-sdk-net@ae577a6 · GitHub
[go: up one dir, main page]

Skip to content

Commit ae577a6

Browse files
Fix merge issues
1 parent 10f08c3 commit ae577a6

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

Src/Notion.Client/Api/Databases/RequestParams/DatabasesUpdateParameters/DatabasesUpdateParameters.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
11
using System.Collections.Generic;
2+
using Newtonsoft.Json;
23

34
namespace 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; }

Src/Notion.Client/Api/Databases/RequestParams/DatabasesUpdateParameters/IDatabasesUpdateBodyParameters.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)
0