account.ReorderUsernames
- class pyrogram.raw.functions.account.ReorderUsernames
Reorder usernames associated with the currently logged-in user.
- Details:
Layer:
223ID:
EF500EAB
- Parameters:
order (List of
str) – The new order for active usernames. All active usernames must be specified.- Returns:
bool
TL Schema
account.reorderUsernames#ef500eab
order:Vector<string>
= Bool
Parameter Tree
ReorderUsernames
└── order →
Vector < string >Example
await app.invoke(
ReorderUsernames(
order=["text"],
)
)