Path : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Objects/Passport/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/phkaymedia/vendor/irazasyed/telegram-bot-sdk/src/Objects/Passport/SecureValue.php |
<?php namespace Telegram\Bot\Objects\Passport; use Telegram\Bot\Objects\BaseObject; /** * @link https://core.telegram.org/bots/api#securevalue * * @property DataCredentials|null $data (Optional). Credentials for encrypted Telegram Passport data. Available for “personal_details”, “passport”, “driver_license”, “identity_card”, “internal_passport” and “address” types. * @property FileCredentials|null $frontSide (Optional). Credentials for an encrypted document's front side. Available for “passport”, “driver_license”, “identity_card” and “internal_passport”. * @property FileCredentials|null $reverseSide (Optional). Credentials for an encrypted document's reverse side. Available for “driver_license” and “identity_card”. * @property FileCredentials|null $selfie (Optional). Credentials for an encrypted selfie of the user with a document. Available for “passport”, “driver_license”, “identity_card” and “internal_passport”. * @property FileCredentials[]|null $translation (Optional). Credentials for an encrypted translation of the document. Available for “passport”, “driver_license”, “identity_card”, “internal_passport”, “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration” and “temporary_registration”. * @property FileCredentials[]|null $files (Optional). Credentials for encrypted files. Available for “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration” and “temporary_registration” types. */ class SecureValue extends BaseObject { /** * {@inheritdoc} */ public function relations() { return [ 'data' => DataCredentials::class, 'front_side' => FileCredentials::class, 'reverse_side' => FileCredentials::class, 'selfie' => FileCredentials::class, 'translation' => [FileCredentials::class], 'files' => [FileCredentials::class], ]; } }