pimax\Messages\MessageButton::__construct PHP Метод

__construct() публичный Метод

MessageButton constructor.
public __construct ( string $type, string $title, string $url = '' )
$type string
$title string
$url string url or postback
    public function __construct($type, $title, $url = '')
    {
        $this->type = $type;
        $this->title = $title;
        if (!$url) {
            $url = $title;
        }
        $this->url = $url;
    }