account.DeleteSecureValue
- class pyrogram.raw.functions.account.DeleteSecureValue
Delete stored Telegram Passport documents, for more info see the passport docs »
- Details:
Layer:
223ID:
B880BC4B
- Parameters:
types (List of
SecureValueType) – Document types to delete- Returns:
bool
TL Schema
account.deleteSecureValue#b880bc4b
types:Vector<SecureValueType>
= Bool
Parameter Tree
Example
await app.invoke(
DeleteSecureValue(
types=[
SecureValueTypePersonalDetails()
],
)
)