auth.CancelCode
- class pyrogram.raw.functions.auth.CancelCode
Cancel the login verification code
- Details:
Layer:
223ID:
1F040578
- Parameters:
phone_number (
str) – Phone numberphone_code_hash (
str) – Phone code hash from auth.sendCode
- Returns:
bool
TL Schema
auth.cancelCode#1f040578
phone_number:string
phone_code_hash:string
= Bool
Parameter Tree
CancelCode
├── phone_number →
string└── phone_code_hash →
stringExample
await app.invoke(
CancelCode(
phone_number="text",
phone_code_hash="text",
)
)