for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zanzara\Telegram\Type\InlineQueryResult;
abstract class InlineQueryResult
{
/**
* Type of the result, must be article
*
* @var string
*/
private $type;
* Unique identifier for this result, 1-64 Bytes
private $id;
* @return string
public function getType(): string
return $this->type;
}
* @param string $type
public function setType(string $type): void
$this->type = $type;
public function getId(): string
return $this->id;
* @param string $id
public function setId(string $id): void
$this->id = $id;