Skip to content

Commit

Permalink
add donut_paid_duration parameter (#1624)
Browse files Browse the repository at this point in the history
Добавил необязательное поле donut_paid_duration для создания постов.
Перепроверил. Теперь можно создавать записи только для донов или
открывать их через время
<img width="310" alt="Снимок экрана 2024-12-09 в 12 28 05"
src="https://github.com/user-attachments/assets/f67649fe-4a43-424a-86e4-c0dee21e1058">
  • Loading branch information
reNER0 authored Dec 9, 2024
1 parent 5101f47 commit 2acd21d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
3 changes: 3 additions & 0 deletions VkNet/Categories/WallCategory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,9 @@ public ReadOnlyCollection<Post> GetById(IEnumerable<string> posts
{
"close_comments", @params.CloseComments
},
{
"donut_paid_duration", @params.DonutPaidDuration
},
{
"mute_notifications", @params.MuteNotifications
},
Expand Down
21 changes: 19 additions & 2 deletions VkNet/Model/RequestParams/Wall/WallPostParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,25 @@ public class WallPostParams
/// Включать закртыте комментарии
/// </summary>
[JsonProperty("close_comments")]
public bool? CloseComments { get; set; }

public bool? CloseComments { get; set; }

/// <summary>
/// Период времени в секундах, в течение которого запись будет доступна только для донов.
/// </summary>
/// <remarks>
/// Примеры значений:
/// -1 — исключительно для донов.
/// 86400 — на 1 день.
/// 172800 — на 2 дня.
/// 259200 — на 3 дня.
/// 345600 — на 4 дня.
/// 432000 — на 5 дней.
/// 518400 — на 6 дней.
/// 604800 — на 7 дней.
/// </remarks>
[JsonProperty("donut_paid_duration")]
public int? DonutPaidDuration { get; set; }

/// <summary>
/// 1 — уведомления к записи отключены.
/// 0 — уведомления к записи включены.
Expand Down

0 comments on commit 2acd21d

Please sign in to comment.