mirror of
https://github.com/vknet/vk.git
synced 2026-07-11 17:08:26 +00:00
35 lines
No EOL
796 B
C#
35 lines
No EOL
796 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Доступность рекламной акции пользователю.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Checked
|
|
{
|
|
/// <summary>
|
|
/// Information whether user can start the lead
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "result")]
|
|
public string Result { get; set; }
|
|
|
|
/// <summary>
|
|
/// URL user should open to start the lead
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "start_link")]
|
|
public string StartLink { get; set; }
|
|
|
|
/// <summary>
|
|
/// Session ID
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "sid")]
|
|
public string Sid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reason why user can't start the lead
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "reason")]
|
|
public string Reason { get; set; }
|
|
} |