diff --git a/VkNet/Categories/WallCategory.cs b/VkNet/Categories/WallCategory.cs index d1cb89a7b..84639c582 100644 --- a/VkNet/Categories/WallCategory.cs +++ b/VkNet/Categories/WallCategory.cs @@ -222,6 +222,9 @@ public ReadOnlyCollection GetById(IEnumerable posts { "close_comments", @params.CloseComments }, + { + "donut_paid_duration", @params.DonutPaidDuration + }, { "mute_notifications", @params.MuteNotifications }, diff --git a/VkNet/Model/RequestParams/Wall/WallPostParams.cs b/VkNet/Model/RequestParams/Wall/WallPostParams.cs index 08d322252..9f5c2ade3 100644 --- a/VkNet/Model/RequestParams/Wall/WallPostParams.cs +++ b/VkNet/Model/RequestParams/Wall/WallPostParams.cs @@ -146,8 +146,25 @@ public class WallPostParams /// Включать закртыте комментарии /// [JsonProperty("close_comments")] - public bool? CloseComments { get; set; } - + public bool? CloseComments { get; set; } + + /// + /// Период времени в секундах, в течение которого запись будет доступна только для донов. + /// + /// + /// Примеры значений: + /// -1 — исключительно для донов. + /// 86400 — на 1 день. + /// 172800 — на 2 дня. + /// 259200 — на 3 дня. + /// 345600 — на 4 дня. + /// 432000 — на 5 дней. + /// 518400 — на 6 дней. + /// 604800 — на 7 дней. + /// + [JsonProperty("donut_paid_duration")] + public int? DonutPaidDuration { get; set; } + /// /// 1 — уведомления к записи отключены. /// 0 — уведомления к записи включены.