mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
24 lines
704 B
Python
24 lines
704 B
Python
from enum import Enum
|
|
|
|
|
|
class EncryptedPassportElement(str, Enum):
|
|
"""
|
|
This object represents type of encrypted passport element.
|
|
|
|
Source: https://core.telegram.org/bots/api#encryptedpassportelement
|
|
"""
|
|
|
|
PERSONAL_DETAILS = "personal_details"
|
|
PASSPORT = "passport"
|
|
DRIVER_LICENSE = "driver_license"
|
|
IDENTITY_CARD = "identity_card"
|
|
INTERNAL_PASSPORT = "internal_passport"
|
|
ADDRESS = "address"
|
|
UTILITY_BILL = "utility_bill"
|
|
BANK_STATEMENT = "bank_statement"
|
|
RENTAL_AGREEMENT = "rental_agreement"
|
|
PASSPORT_REGISTRATION = "passport_registration"
|
|
TEMPORARY_REGISTRATION = "temporary_registration"
|
|
PHONE_NUMBER = "phone_number"
|
|
EMAIL = "email"
|