Constructor: starGiftAuctionState
Attributes:
| Name | Type | Required |
|---|---|---|
| version | int | Yes |
| start_date | int | Yes |
| end_date | int | Yes |
| min_bid_amount | long | Yes |
| bid_levels | Array of AuctionBidLevel | Yes |
| top_bidders | Array of long | Yes |
| next_round_at | int | Yes |
| gifts_left | int | Yes |
| current_round | int | Yes |
| total_rounds | int | Yes |
Type: StarGiftAuctionState
Example:
$starGiftAuctionState = ['_' => 'starGiftAuctionState', 'version' => int, 'start_date' => int, 'end_date' => int, 'min_bid_amount' => long, 'bid_levels' => [AuctionBidLevel, AuctionBidLevel], 'top_bidders' => [long, long], 'next_round_at' => int, 'gifts_left' => int, 'current_round' => int, 'total_rounds' => int];