Skip to content

Commit

Permalink
Merge pull request #238 from vijayvarmaD/fix/232_naming_convention_ur…
Browse files Browse the repository at this point in the history
…l_property

Matched the naming convention for property URL across project
  • Loading branch information
KoditkarVedant authored Jul 3, 2022
2 parents ba59ee0 + abd0ea1 commit 9ca4c5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Notion.Client
{
public class URLPropertyScheam : IPropertySchema
public class UrlPropertySchema : IPropertySchema
{
[JsonProperty("url")]
public Dictionary<string, object> Url { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Notion.Client
{
public class URLUpdatePropertySchema : UpdatePropertySchema, IUpdatePropertySchema
public class UrlUpdatePropertySchema : UpdatePropertySchema, IUpdatePropertySchema
{
[JsonProperty("url")]
public Dictionary<string, object> Url { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion Src/Notion.Client/NotionAPIErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public enum NotionAPIErrorCode
InvalidJSON,

[EnumMember(Value = "invalid_request_url")]
InvalidRequestURL,
InvalidRequestUrl,

[EnumMember(Value = "invalid_request")]
InvalidRequest,
Expand Down

0 comments on commit 9ca4c5e

Please sign in to comment.