mirror of
https://github.com/openvk/openvk
synced 2025-07-07 08:19:49 +03:00
17 lines
330 B
PHP
17 lines
330 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\VKAPI\Structures;
|
|
|
|
final class Note
|
|
{
|
|
public $id;
|
|
public $owner_id;
|
|
public $title;
|
|
public $text;
|
|
public $date;
|
|
public $comments;
|
|
public $read_comments = 0;
|
|
public $view_url;
|
|
public $privacy_view;
|
|
public $can_comment;
|
|
public $text_wiki;
|
|
}
|