| 1 | <?php |
||
| 25 | class SetPassportDataErrors extends TelegramMethods |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * User identifier |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | public $user_id = 0; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * A JSON-serialized array describing the errors |
||
| 35 | * @var PassportElementError[] |
||
| 36 | */ |
||
| 37 | public $errors = []; |
||
| 38 | |||
| 39 | public static function bindToObject(TelegramResponse $data, LoggerInterface $logger): TelegramTypes |
||
| 43 | |||
| 44 | public function getMandatoryFields(): array |
||
| 51 | } |
||
| 52 |