StarGiftAuctionUserState

class pyrogram.raw.base.StarGiftAuctionUserState
Constructors:

This base type has 1 constructor available.

StarGiftAuctionUserState

{schema}

TL Schema

starGiftAuctionUserState#2eeed1c4
flags:#
returned:flags.1?true
bid_amount:flags.0?long
bid_date:flags.0?int
min_bid_amount:flags.0?long
bid_peer:flags.0?Peer
acquired_count:int

= StarGiftAuctionUserState

Parameter Tree

StarGiftAuctionUserState
├── returnedtrue (optional)
├── bid_amountlong (optional)
├── bid_dateint (optional)
├── min_bid_amountlong (optional)
├── bid_peerPeer (optional)
│ ├── PeerUser
│ │ └── user_idlong
│ ├── PeerChat
│ │ └── chat_idlong
│ └── PeerChannel
│ └── channel_idlong
└── acquired_countint

Example

StarGiftAuctionUserState(
    returned=None,
    bid_amount=0,
    bid_date=0,
    min_bid_amount=0,
    bid_peer=PeerUser(user_id=0),
    acquired_count=0,
)