File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -52,5 +52,11 @@ public class Database : IObject, IObjectModificationData
5252 public PartialUser CreatedBy { get ; set ; }
5353
5454 public PartialUser LastEditedBy { get ; set ; }
55+
56+ /// <summary>
57+ /// The public page URL if the page has been published to the web. Otherwise, null.
58+ /// </summary>
59+ [ JsonProperty ( "public_url" ) ]
60+ public string PublicUrl { get ; set ; }
5561 }
5662}
Original file line number Diff line number Diff line change @@ -67,5 +67,11 @@ public class Page : IObject, IObjectModificationData
6767 public PartialUser CreatedBy { get ; set ; }
6868
6969 public PartialUser LastEditedBy { get ; set ; }
70+
71+ /// <summary>
72+ /// The public page URL if the page has been published to the web. Otherwise, null.
73+ /// </summary>
74+ [ JsonProperty ( "public_url" ) ]
75+ public string PublicUrl { get ; set ; }
7076 }
7177}
You can’t perform that action at this time.
0 commit comments