payments.GetStarGiftWithdrawalUrl
- class pyrogram.raw.functions.payments.GetStarGiftWithdrawalUrl
Convert a collectible gift » to an NFT on the TON blockchain.
- Details:
Layer:
223ID:
D06E93A8
- Parameters:
stargift (
InputSavedStarGift) – The collectible gift to export.password (
InputCheckPasswordSRP) – The current user’s 2FA password, passed as specified here ».
- Returns:
TL Schema
payments.getStarGiftWithdrawalUrl#d06e93a8
stargift:InputSavedStarGift
password:InputCheckPasswordSRP
= payments.StarGiftWithdrawalUrl
Parameter Tree
GetStarGiftWithdrawalUrl
├── stargift →
InputSavedStarGift│ ├──
InputSavedStarGiftUser│ │ └── msg_id →
int│ ├──
InputSavedStarGiftChat│ │ ├── peer →
InputPeer│ │ │ ├──
InputPeerEmpty│ │ │ ├──
InputPeerSelf│ │ │ ├──
InputPeerChat│ │ │ ├──
InputPeerUser│ │ │ ├──
InputPeerChannel│ │ │ ├──
InputPeerUserFromMessage│ │ │ └──
InputPeerChannelFromMessage│ │ └── saved_id →
long│ └──
InputSavedStarGiftSlug│ └── slug →
string└── password →
InputCheckPasswordSRP├── srp_id →
long├── A →
bytes└── M1 →
bytesExample
await app.invoke(
GetStarGiftWithdrawalUrl(
stargift=InputSavedStarGiftUser(msg_id=0),
password=InputCheckPasswordEmpty(),
)
)